19 lines
461 B
C#
19 lines
461 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|