Files
netch/Netch/Models/Settings/V2rayConfig.cs
2022-03-22 14:20:23 +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;
}