namespace Netch.Servers.Shadowsocks.Models.SSD { public class SSDServer { /// /// 服务器地址 /// public string server; /// /// 端口 /// public ushort port; /// /// 加密方式 /// public string encryption; /// /// 密码 /// public string password; /// /// 插件 /// public string plugin; /// /// 插件参数 /// public string plugin_options; /// /// 备注 /// public string remarks; } }