AlipayMerchantTicketQueryResponse.cs 545 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. using Aop.Api.Domain;
  5. namespace Aop.Api.Response
  6. {
  7. /// <summary>
  8. /// AlipayMerchantTicketQueryResponse.
  9. /// </summary>
  10. public class AlipayMerchantTicketQueryResponse : AopResponse
  11. {
  12. /// <summary>
  13. /// 商户会员券对象列表
  14. /// </summary>
  15. [XmlArray("merchant_ticket_models")]
  16. [XmlArrayItem("merchant_ticket_model")]
  17. public List<MerchantTicketModel> MerchantTicketModels { get; set; }
  18. }
  19. }