using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// EcoRenthouseRoomInfoList Data Structure. /// [Serializable] public class EcoRenthouseRoomInfoList : AopObject { /// /// 房间参与免押金的到期日期YYYY-MM-dd /// [XmlElement("deposit_end_time")] public string DepositEndTime { get; set; } /// /// KA内部存储的房房间ID /// [XmlElement("ka_room_id")] public string KaRoomId { get; set; } /// /// KA内部存储的房源编号 /// [XmlElement("room_code")] public string RoomCode { get; set; } /// /// KA内部存储的房房间号 /// [XmlElement("room_num")] public string RoomNum { get; set; } } }