using System; using System.Collections.Generic; namespace AvaloniaApplicationBase.Models; public partial class TraitTable { public int Id { get; set; } public string Trait { get; set; } = null!; public virtual ICollection TraitCatTables { get; set; } = new List(); }