mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
Add files via upload
This commit is contained in:
30
Netch/Models/Server/VLess/VLess.cs
Normal file
30
Netch/Models/Server/VLess/VLess.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user