using System; using System.Collections.Generic; namespace TourAgent.Models { public partial class Country { public Country() { Hotels = new HashSet(); } public string Code { get; set; } = null!; public string Name { get; set; } = null!; public virtual ICollection Hotels { get; set; } } }