16 lines
308 B
C#
16 lines
308 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Domain;
|
|
|
|
namespace CommonEntity
|
|
{
|
|
public class FangTaiData
|
|
{
|
|
public int hotelID { get; set; }
|
|
public RoomStatus roomStatus { get; set; }
|
|
public string RoomNUM { get; set; }
|
|
}
|
|
}
|