初始提交
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// PromoteItemModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class PromoteItemModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 品牌名称
|
||||
/// </summary>
|
||||
[JsonProperty("brand_name")]
|
||||
public string BrandName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户名称
|
||||
/// </summary>
|
||||
[JsonProperty("merchant_name")]
|
||||
public string MerchantName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 券名称
|
||||
/// </summary>
|
||||
[JsonProperty("voucher_name")]
|
||||
public string VoucherName { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user