using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMarketingVoucherSendResponse. /// public class AlipayMarketingVoucherSendResponse : AopResponse { /// /// 支付宝用户ID /// [XmlElement("user_id")] public string UserId { get; set; } /// /// 券ID /// [XmlElement("voucher_id")] public string VoucherId { get; set; } } }