using System; using System.Collections.Generic; namespace AvaloniaApplicationTest.Models; public partial class Type { public int Id { get; set; } public string Name { get; set; } = null!; public string? Description { get; set; } public virtual ICollection Tours { get; set; } = new List(); }