Files
netch/Netch/Models/Settings/V2rayConfig.cs
ChsBuffer 8fb2bdcee9 C# 10
2021-11-13 00:44:09 +08:00

14 lines
314 B
C#

namespace Netch.Models;
public class V2rayConfig
{
public bool AllowInsecure { get; set; } = false;
public KcpConfig KcpConfig { get; set; } = new();
public bool UseMux { get; set; } = false;
public bool V2rayNShareLink { get; set; } = true;
public bool XrayCone { get; set; } = true;
}