mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
31 lines
691 B
C#
31 lines
691 B
C#
namespace Netch.Models.Server.VLess
|
|
{
|
|
public class VLess : Server
|
|
{
|
|
public VLess()
|
|
{
|
|
this.Type = ServerType.VLess;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 自定义配置
|
|
/// </summary>
|
|
public bool Custom = true;
|
|
|
|
/// <summary>
|
|
/// 自定义配置文件路径
|
|
/// </summary>
|
|
public string FilePath;
|
|
|
|
/// <summary>
|
|
/// 解析链接
|
|
/// </summary>
|
|
/// <param name="link">链接</param>
|
|
/// <returns>是否成功</returns>
|
|
public bool ParseLink(string link)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|