Files
netch/Netch/Models/Server/VLess/VLess.cs
2021-07-10 14:16:34 +08:00

33 lines
793 B
C#

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