12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- 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<TraitCatTable> TraitCatTables { get; set; } = new List<TraitCatTable>();
- }
|