using HotelPms.Data.UseInfo;
namespace HotelPms.Client.Blazor.Models
{
///
/// 利用日、部屋毎データ
///
public class UseRoomRow
{
///
/// 部屋番号
///
public string RoomID { get; set; } = string.Empty;
///
/// 部屋代表者名
///
public string Name { get; set; } = string.Empty;
///
/// 利用状態記号
///
public string UseStatus { get; set; } = string.Empty;
///
/// 代表者
///
public bool Representative { get; set; } = false;
///
/// ソート順
///
public string SortKey { get; set; } = string.Empty;
///
/// 一括行
///
public bool AllSel { get; set; } = false;
///
/// 利用部屋
///
public UseRoom UseRoom { get; set; }
}
}