TraitTable.cs 316 B

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