31 lines
693 B
C#
31 lines
693 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// PromoteItemModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PromoteItemModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 品牌名称
|
|
/// </summary>
|
|
[XmlElement("brand_name")]
|
|
public string BrandName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户名称
|
|
/// </summary>
|
|
[XmlElement("merchant_name")]
|
|
public string MerchantName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 券名称
|
|
/// </summary>
|
|
[XmlElement("voucher_name")]
|
|
public string VoucherName { get; set; }
|
|
}
|
|
}
|