using System.Collections.Generic; namespace Netch.Models.SSD { public class Main { /// /// 机场名 /// public string airport; /// /// 端口 /// public int port; /// /// 加密方式 /// public string encryption; /// /// 密码 /// public string password; /// /// 插件 /// public string plugin; /// /// 插件参数 /// public string plugin_options; /// /// 服务器数组 /// public List servers; } }