using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiMemberRetailerQueryResponse. /// public class KoubeiMemberRetailerQueryResponse : AopResponse { /// /// 零售商信息列表 /// [XmlArray("retailer_list")] [XmlArrayItem("retailer")] public List RetailerList { get; set; } } }