using System; using System.Collections.Generic; namespace TourAgent.Models { public partial class Otel { public Otel() { HotelComments = new HashSet(); HotelImages = new HashSet(); HotelOfTours = new HashSet(); } 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; } public virtual ICollection HotelImages { get; set; } public virtual ICollection HotelOfTours { get; set; } } }