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