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