using HotelPms.Share.Util;
|
using System.Data;
|
|
namespace HotelPms.Client.Blazor.Models;
|
|
public class RoomTypeBase
|
{
|
public int Kind { get; set; } = 0;
|
public string Name { get; set; } = string.Empty;
|
|
public RoomTypeBase(DataRow row)
|
{
|
Kind = CConvert.ToInt(row["Kind"]);
|
Name = CConvert.ToString(row["Name"]);
|
}
|
}
|