GenderTable.cs 303 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplicationBase.Models;
  4. public partial class GenderTable
  5. {
  6. public int Id { get; set; }
  7. public string Gender { get; set; } = null!;
  8. public virtual ICollection<CatTable> CatTables { get; set; } = new List<CatTable>();
  9. }