- using System;
- using System.Collections.Generic;
- namespace AvaloniaHomeTry.Models;
- public partial class Trait
- {
- public int Idtraits { get; set; }
- public string? Titletraits { get; set; }
- public virtual ICollection<UsersTable> Idusers { get; set; } = new List<UsersTable>();
- }
|