using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MallConsumeVoucher Data Structure.
///
[Serializable]
public class MallConsumeVoucher : AopObject
{
///
/// 券品牌名称
///
[XmlElement("brand_name")]
public string BrandName { get; set; }
///
/// 消费送活动id
///
[XmlElement("source_camp")]
public string SourceCamp { get; set; }
///
/// 券类型
///
[XmlElement("voucher_type")]
public string VoucherType { get; set; }
///
/// 券面额或者折扣
///
[XmlElement("worth_value")]
public string WorthValue { get; set; }
}
}