You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
820 B
C#

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