AlipayDonateitemsGetResponse.cs 512 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayDonateitemsGetResponse.
  7. /// </summary>
  8. public class AlipayDonateitemsGetResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 捐款金额
  12. /// </summary>
  13. [XmlElement("amount")]
  14. public string Amount { get; set; }
  15. /// <summary>
  16. /// 捐款笔数
  17. /// </summary>
  18. [XmlElement("count")]
  19. public string Count { get; set; }
  20. }
  21. }