using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YouZanSDKStandard.Api.Domain { /// /// hotel信息 /// [Serializable] public class HotelInfoOpenModel { /// /// 入住时间 /// public string check_in_time { get; set; } /// /// 退房时间 /// public string check_out_time { get; set; } /// /// 入住人信息 /// public string[] accommodates { get; set; } } }