using System; namespace RestaurantApp.Models { public class Reservation { public int ReservationId { get; set; } public int TableId { get; set; } public string TableInfo { get; set; } public int? ClientId { get; set; } public string ClientName { get; set; } public int? EmployeeId { get; set; } public string EmployeeName { get; set; } public DateTime ReservedAt { get; set; } public int DurationMin { get; set; } public int GuestsCount { get; set; } public string Status { get; set; } public string Notes { get; set; } public DateTime CreatedAt { get; set; } } }