using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingCardBenefitQueryModel Data Structure. /// [Serializable] public class AlipayMarketingCardBenefitQueryModel : AopObject { /// /// 权益ID /// [XmlElement("benefit_id")] public string BenefitId { get; set; } /// /// 会员卡模板ID /// [XmlElement("template_id")] public string TemplateId { get; set; } } }