#nullable disable
namespace Netch.Servers;
public class SSDJObject
{
///
/// 机场名
///
public string airport;
///
/// 加密方式
///
public string encryption;
///
/// 密码
///
public string password;
///
/// 插件
///
public string plugin;
///
/// 插件参数
///
public string plugin_options;
///
/// 端口
///
public ushort port;
///
/// 服务器数组
///
public List servers;
}