mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-13 11:54:02 +08:00
16 lines
366 B
C#
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;
|
|
} |