mirror of
https://github.com/netchx/netch.git
synced 2026-03-20 18:19:44 +08:00
18 lines
395 B
C#
18 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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 = "";
|
|
}
|
|
}
|