using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// PidShopInfo Data Structure. /// [Serializable] public class PidShopInfo : AopObject { /// /// 商户pid /// [XmlElement("pid")] public string Pid { get; set; } /// /// pid下的门店列表 /// [XmlArray("shop_ids")] [XmlArrayItem("string")] public List ShopIds { get; set; } } }