using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// HttpdnsApiruleGetResponse. /// public class HttpdnsApiruleGetResponse : TopResponse { /// /// modal /// [XmlArray("rules")] [XmlArrayItem("api_cluster_config_do")] public List Rules { get; set; } /// /// ApiClusterConfigDoDomain Data Structure. /// [Serializable] public class ApiClusterConfigDoDomain : TopObject { /// /// 权重 /// [XmlElement("power")] public string Power { get; set; } /// /// 区域 /// [XmlElement("region")] public string Region { get; set; } } } }