mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
24 lines
562 B
C#
24 lines
562 B
C#
namespace Netch.Models.Config
|
|
{
|
|
public class Ports
|
|
{
|
|
/// <summary>
|
|
/// Socks 端口
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("socks")]
|
|
public int Socks = 2081;
|
|
|
|
/// <summary>
|
|
/// Mixed 端口
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("mixed")]
|
|
public int Mixed = 2082;
|
|
|
|
/// <summary>
|
|
/// Redir 端口
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("redir")]
|
|
public int Redir = 2083;
|
|
}
|
|
}
|