using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// PromoteItemModel Data Structure.
///
[Serializable]
public class PromoteItemModel : AopObject
{
///
/// 品牌名称
///
[JsonProperty("brand_name")]
public string BrandName { get; set; }
///
/// 商户名称
///
[JsonProperty("merchant_name")]
public string MerchantName { get; set; }
///
/// 券名称
///
[JsonProperty("voucher_name")]
public string VoucherName { get; set; }
}
}