OpenmallRefundSubmitResponse.cs 411 B

12345678910111213141516171819
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// OpenmallRefundSubmitResponse.
  8. /// </summary>
  9. public class OpenmallRefundSubmitResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 提交物流单成功
  13. /// </summary>
  14. [XmlElement("result")]
  15. public bool Result { get; set; }
  16. }
  17. }