AlipayMicropayOrderDirectPayResponse.cs 454 B

123456789101112131415161718
  1. using System;
  2. using System.Xml.Serialization;
  3. using Aop.Api.Domain;
  4. namespace Aop.Api.Response
  5. {
  6. /// <summary>
  7. /// AlipayMicropayOrderDirectPayResponse.
  8. /// </summary>
  9. public class AlipayMicropayOrderDirectPayResponse : AopResponse
  10. {
  11. /// <summary>
  12. /// 单笔直接支付返回结果
  13. /// </summary>
  14. [XmlElement("single_pay_detail")]
  15. public SinglePayDetail SinglePayDetail { get; set; }
  16. }
  17. }