using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOfflineMarketShopDiscountQueryResponse. /// public class AlipayOfflineMarketShopDiscountQueryResponse : AopResponse { /// /// 优惠信息列表,最大20条,按生效时间排序 /// [XmlArray("discount_list")] [XmlArrayItem("shop_discount_info")] public List DiscountList { get; set; } /// /// 商品列表,最大20条,按申领数量排序 /// [XmlArray("item_list")] [XmlArrayItem("shop_discount_info")] public List ItemList { get; set; } } }