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