using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// HttpdnsGetResponse. /// public class HttpdnsGetResponse : TopResponse { /// /// HTTP DNS配置信息 /// [XmlElement("result")] public string Result { get; set; } } }