using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// TopapiPerformanceTestResponse. /// public class TopapiPerformanceTestResponse : TopResponse { /// /// errorCode /// [XmlElement("error_coder")] public string ErrorCoder { get; set; } /// /// errorMsg /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// 123 /// [XmlElement("last_modified")] public string LastModified { get; set; } /// /// 123 /// [XmlArray("results")] [XmlArrayItem("string")] public List Results { get; set; } /// /// 123 /// [XmlElement("total_results")] public long TotalResults { get; set; } } }