using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// RarDatasQueryResponse. /// public class RarDatasQueryResponse : TopResponse { /// /// errorMsg /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// results /// [XmlElement("results")] public string Results { get; set; } /// /// success /// [XmlElement("suc")] public bool Suc { get; set; } } }