using System; using System.Collections.Generic; using AvaloniaApplicationBase.Models; namespace AvaloniaApplicationBase.Models; public partial class CatTable { public int Id { get; set; } public string Name { get; set; } = null!; public DateTime Date { get; set; } public int Gender { get; set; } public virtual GenderTable GenderNavigation { get; set; } = null!; public virtual ICollection TraitCatTables { get; set; } = new List(); }