Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/PromoteItemModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +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; }
}
}