using System; using System.Collections.Generic; namespace TourAgent.Models { public partial class OtelComment { public int Id { get; set; } public int HotelId { get; set; } public string Text { get; set; } = null!; public string Author { get; set; } = null!; public DateOnly CreationDate { get; set; } public virtual Otel Hotel { get; set; } = null!; } }