using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMerchantTicketApplyResponse. /// public class AlipayMerchantTicketApplyResponse : AopResponse { /// /// 券Id /// [XmlElement("ticket_id")] public string TicketId { get; set; } /// /// 券编号 /// [XmlElement("ticket_no")] public string TicketNo { get; set; } } }