1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayPlatformAppAddResponse : AopResponse
- {
-
-
-
- [XmlElement("aop_app_id")]
- public string AopAppId { get; set; }
-
-
-
- [XmlElement("aop_app_status")]
- public string AopAppStatus { get; set; }
-
-
-
- [XmlElement("aop_audit_opinion")]
- public string AopAuditOpinion { get; set; }
-
-
-
- [XmlElement("out_app_id")]
- public string OutAppId { get; set; }
- }
- }
|