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; }
}
}
}