using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PayForPrivilegePaidVoucherConfig Data Structure. /// [Serializable] public class PayForPrivilegePaidVoucherConfig : AopObject { /// /// 消费者充值赠送的该类型有偿券的数量 /// [XmlElement("send_count")] public long SendCount { get; set; } /// /// 有偿券模板ID /// [XmlElement("template_id")] public string TemplateId { get; set; } } }