namespace Netch.Models.Server.VMess { public class VMess : Server { public VMess() { this.Type = ServerType.VMess; } /// /// 自定义配置 /// [Newtonsoft.Json.JsonProperty("custom")] public bool Custom = true; /// /// 自定义配置文件路径 /// [Newtonsoft.Json.JsonProperty("filepath")] public string FilePath; /// /// 解析链接 /// /// 链接 /// 是否成功 public bool ParseLink(string link) { return false; } } }