Files
Archive/netch/Netch/Models/Settings/V2rayConfig.cs
2024-03-05 02:32:38 -08:00

16 lines
366 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;
public bool TCPFastOpen { get; set; } = false;
}