mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
18 lines
400 B
C#
18 lines
400 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;
|
|
}
|
|
}
|