1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayAssetAccountUnbindResponse : AopResponse
- {
-
-
-
- [XmlElement("alipay_user_id")]
- public string AlipayUserId { get; set; }
-
-
-
- [XmlElement("provider_id")]
- public string ProviderId { get; set; }
-
-
-
- [XmlElement("provider_user_id")]
- public string ProviderUserId { get; set; }
-
-
-
- [XmlElement("provider_user_name")]
- public string ProviderUserName { get; set; }
- }
- }
|