using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringPosDeskDeleteModel Data Structure. /// [Serializable] public class KoubeiCateringPosDeskDeleteModel : AopObject { /// /// 桌位Id /// [XmlElement("id")] public string Id { get; set; } /// /// 门店Id /// [XmlElement("shop_id")] public string ShopId { get; set; } } }