mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
12 lines
272 B
C#
12 lines
272 B
C#
namespace Netch.Models.Config
|
|
{
|
|
public class DNSProxy
|
|
{
|
|
[Newtonsoft.Json.JsonProperty("otherdns")]
|
|
public string OtherDNS = "tls://8.8.8.8:853";
|
|
|
|
[Newtonsoft.Json.JsonProperty("args")]
|
|
public string Args = "";
|
|
}
|
|
}
|