TraitCatTable.cs 380 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplicationBase.Models;
  4. public partial class TraitCatTable
  5. {
  6. public int Id { get; set; }
  7. public int IdCat { get; set; }
  8. public int IdTrait { get; set; }
  9. public virtual CatTable IdCatNavigation { get; set; } = null!;
  10. public virtual TraitTable IdTraitNavigation { get; set; } = null!;
  11. }