1234567891011121314151617181920212223 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayMerchantIndirectAuthorderCreateResponse : AopResponse
- {
-
-
-
- [XmlElement("order_no")]
- public string OrderNo { get; set; }
-
-
-
- [XmlElement("order_status")]
- public string OrderStatus { get; set; }
- }
- }
|