Type.cs 328 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace AvaloniaApplicationTest.Models;
  4. public partial class Type
  5. {
  6. public int Id { get; set; }
  7. public string Name { get; set; } = null!;
  8. public string? Description { get; set; }
  9. public virtual ICollection<Tour> Tours { get; set; } = new List<Tour>();
  10. }