1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayUserMemberCardUpdateResponse : AopResponse
- {
-
-
-
- [XmlElement("card")]
- public string Card { get; set; }
-
-
-
- [XmlElement("result_code")]
- public string ResultCode { get; set; }
-
-
-
- [XmlElement("result_msg")]
- public string ResultMsg { get; set; }
- }
- }
|