Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/PromoteItemModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
605 B
C#

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; }
}
}