AlipayUserBindingGetResponse.cs 545 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipayUserBindingGetResponse.
  7. /// </summary>
  8. public class AlipayUserBindingGetResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 合作伙伴用户id
  12. /// </summary>
  13. [XmlElement("partner_user_id")]
  14. public string PartnerUserId { get; set; }
  15. /// <summary>
  16. /// 淘宝用户id
  17. /// </summary>
  18. [XmlElement("taobao_id")]
  19. public string TaobaoId { get; set; }
  20. }
  21. }