| 12345678910111213141516171819 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// OpenmallRefundMessageSubmitResponse.
- /// </summary>
- public class OpenmallRefundMessageSubmitResponse : TopResponse
- {
- /// <summary>
- /// 提交结果
- /// </summary>
- [XmlElement("result")]
- public bool Result { get; set; }
- }
- }
|