26 lines
520 B
C#
26 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HotelAbstractions.Models
|
|
{
|
|
public class Room
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int HotelId { get; set; }
|
|
|
|
public string Category { get; set; } = string.Empty;
|
|
|
|
public int CountPlace { get; set; }
|
|
|
|
public int Flor { get; set; }
|
|
|
|
public string Number { get; set; } = string.Empty;
|
|
|
|
public double Price { get; set; }
|
|
}
|
|
}
|