- using System;
- using System.Collections.Generic;
- namespace AvaloniaApplicationBase.Models;
- public partial class GenderTable
- {
- public int Id { get; set; }
- public string Gender { get; set; } = null!;
- public virtual ICollection<CatTable> CatTables { get; set; } = new List<CatTable>();
- }
|