using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayCommerceCityfacilitatorVoucherBatchqueryResponse. /// public class AlipayCommerceCityfacilitatorVoucherBatchqueryResponse : AopResponse { /// /// 查询到的订单信息列表 /// [XmlArray("tickets")] [XmlArrayItem("ticket_detail_info")] public List Tickets { get; set; } } }