Files
netch/Netch/Servers/Shadowsocks/Models/ShadowsocksConfig.cs
ChsBuffer ac0800ec56 Reformat
2021-02-20 18:15:16 +08:00

19 lines
413 B
C#

namespace Netch.Servers.Shadowsocks.Models
{
public class ShadowsocksConfig
{
public string server { get; set; }
public ushort server_port { get; set; }
public string password { get; set; }
public string method { get; set; }
public string remarks { get; set; }
public string plugin { get; set; }
public string plugin_opts { get; set; }
}
}