namespace Netch.Models.Config
{
public class AioDNS
{
///
/// 监听地址
///
[Newtonsoft.Json.JsonProperty("listenport")]
public ushort ListenPort = 53;
///
/// 国内 DNS 地址
///
[Newtonsoft.Json.JsonProperty("chinadns")]
public string ChinaDNS = "tcp://119.29.29.29:53";
///
/// 国外 DNS 地址
///
[Newtonsoft.Json.JsonProperty("otherdns")]
public string OtherDNS = "tls://1.1.1.1:853";
}
}