namespace Netch.Models.Config
{
public class Ports
{
///
/// Socks 端口
///
[Newtonsoft.Json.JsonProperty("socks")]
public int Socks = 2081;
///
/// Mixed 端口
///
[Newtonsoft.Json.JsonProperty("mixed")]
public int Mixed = 2082;
///
/// Redir 端口
///
[Newtonsoft.Json.JsonProperty("redir")]
public int Redir = 2083;
}
}