OpenmallRefundCreateResponse.cs 562 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// OpenmallRefundCreateResponse.
  8. /// </summary>
  9. public class OpenmallRefundCreateResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 退款ID
  13. /// </summary>
  14. [XmlElement("refund_id")]
  15. public long RefundId { get; set; }
  16. /// <summary>
  17. /// 退款单状态
  18. /// </summary>
  19. [XmlElement("status")]
  20. public string Status { get; set; }
  21. }
  22. }