Reservation.cs 681 B

123456789101112131415161718192021
  1. using System;
  2. namespace RestaurantApp.Models
  3. {
  4. public class Reservation
  5. {
  6. public int ReservationId { get; set; }
  7. public int TableId { get; set; }
  8. public string TableInfo { get; set; }
  9. public int? ClientId { get; set; }
  10. public string ClientName { get; set; }
  11. public int? EmployeeId { get; set; }
  12. public string EmployeeName { get; set; }
  13. public DateTime ReservedAt { get; set; }
  14. public int DurationMin { get; set; }
  15. public int GuestsCount { get; set; }
  16. public string Status { get; set; }
  17. public string Notes { get; set; }
  18. public DateTime CreatedAt { get; set; }
  19. }
  20. }