using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayMerchantTicketQueryResponse.
///
public class AlipayMerchantTicketQueryResponse : AopResponse
{
///
/// 商户会员券对象列表
///
[XmlArray("merchant_ticket_models")]
[XmlArrayItem("merchant_ticket_model")]
public List MerchantTicketModels { get; set; }
}
}