TmcUserTopicsGetResponse.cs 743 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// TmcUserTopicsGetResponse.
  8. /// </summary>
  9. public class TmcUserTopicsGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 错误码
  13. /// </summary>
  14. [XmlElement("result_code")]
  15. public string ResultCode { get; set; }
  16. /// <summary>
  17. /// 错误信息
  18. /// </summary>
  19. [XmlElement("result_message")]
  20. public string ResultMessage { get; set; }
  21. /// <summary>
  22. /// topic列表
  23. /// </summary>
  24. [XmlArray("topics")]
  25. [XmlArrayItem("string")]
  26. public List<string> Topics { get; set; }
  27. }
  28. }