AlipaySiteprobeShopPublicBindResponse.cs 840 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipaySiteprobeShopPublicBindResponse.
  7. /// </summary>
  8. public class AlipaySiteprobeShopPublicBindResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// 返回码
  12. /// </summary>
  13. [XmlElement("code")]
  14. public string Code { get; set; }
  15. /// <summary>
  16. /// 返回码说明
  17. /// </summary>
  18. [XmlElement("msg")]
  19. public string Msg { get; set; }
  20. /// <summary>
  21. /// 服务窗Logo连接
  22. /// </summary>
  23. [XmlElement("public_logo")]
  24. public string PublicLogo { get; set; }
  25. /// <summary>
  26. /// 服务窗名称
  27. /// </summary>
  28. [XmlElement("public_name")]
  29. public string PublicName { get; set; }
  30. }
  31. }