PIbd-23_Firsov_KA_SUBD/Hotel/HotelAbstractions/Models/Reservation.cs

19 lines
461 B
C#
Raw Permalink Normal View History

2024-05-29 14:28:53 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelAbstractions.Models
{
public class Reservation
{
public int Id { get; set; }
public int GuestId { get; set; }
public int RoomId { get; set; }
public DateOnly ArrivalDate { get; set; }
public DateOnly DepartureDate { get; set; }
public double Price { get; set; }
}
}