using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KbdishVirtualShopSimplifyInfo Data Structure. /// [Serializable] public class KbdishVirtualShopSimplifyInfo : AopObject { /// /// 门店下虚拟类目信息 /// [XmlArray("catetory_list")] [XmlArrayItem("kbdish_virtual_catetory_simplify_info")] public List CatetoryList { get; set; } /// /// 外部门店id,和shop_id做为二选一必填 /// [XmlElement("out_shop_id")] public string OutShopId { get; set; } /// /// 口碑门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } } }