using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayCommerceCityfacilitatorVoucherGenerateResponse. /// public class AlipayCommerceCityfacilitatorVoucherGenerateResponse : AopResponse { /// /// 核销码过期时间 /// [XmlElement("expired_date")] public string ExpiredDate { get; set; } /// /// 地铁购票二维码编码,可自定义 /// [XmlElement("qr_code_no")] public string QrCodeNo { get; set; } /// /// 地铁购票的核销码 /// [XmlElement("ticket_no")] public string TicketNo { get; set; } } }