using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingCampaignCertCreateModel Data Structure. /// [Serializable] public class AlipayMarketingCampaignCertCreateModel : AopObject { /// /// 凭证批次名称 /// [XmlElement("cert_name")] public string CertName { get; set; } /// /// 拓展信息 /// [XmlElement("extend_info")] public string ExtendInfo { get; set; } /// /// 备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 凭证有效次数,数值(最大为10000) /// [XmlElement("valid_count")] public string ValidCount { get; set; } } }