using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// StructureServiceInfo Data Structure. /// [Serializable] public class StructureServiceInfo : AopObject { /// /// 是否提供酒精饮料 /// [XmlElement("alcohol")] public bool Alcohol { get; set; } /// /// 是否接受预约 /// [XmlElement("booking")] public bool Booking { get; set; } /// /// 是否有包厢 /// [XmlElement("box")] public bool Box { get; set; } /// /// 是否允许自带杯 /// [XmlElement("byo")] public bool Byo { get; set; } /// /// 是否提供中文服务 /// [XmlElement("chinese_svc")] public bool ChineseSvc { get; set; } /// /// 是否有停车位 /// [XmlElement("parking")] public bool Parking { get; set; } /// /// 是否支持外带 /// [XmlElement("takeout")] public bool Takeout { get; set; } /// /// 是否支持电话预定 /// [XmlElement("tel_rsvt")] public bool TelRsvt { get; set; } /// /// 是否需要小费 /// [XmlElement("tips")] public bool Tips { get; set; } /// /// 是否有wifi /// [XmlElement("wifi")] public bool Wifi { get; set; } } }