TopapiPerformanceTestResponse.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// TopapiPerformanceTestResponse.
  8. /// </summary>
  9. public class TopapiPerformanceTestResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// errorCode
  13. /// </summary>
  14. [XmlElement("error_coder")]
  15. public string ErrorCoder { get; set; }
  16. /// <summary>
  17. /// errorMsg
  18. /// </summary>
  19. [XmlElement("error_msg")]
  20. public string ErrorMsg { get; set; }
  21. /// <summary>
  22. /// 123
  23. /// </summary>
  24. [XmlElement("last_modified")]
  25. public string LastModified { get; set; }
  26. /// <summary>
  27. /// 123
  28. /// </summary>
  29. [XmlArray("results")]
  30. [XmlArrayItem("string")]
  31. public List<string> Results { get; set; }
  32. /// <summary>
  33. /// 123
  34. /// </summary>
  35. [XmlElement("total_results")]
  36. public long TotalResults { get; set; }
  37. }
  38. }