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