mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
17 lines
365 B
C#
17 lines
365 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Netch.Models.Config
|
||
{
|
||
public class XRay
|
||
{
|
||
/// <summary>
|
||
/// FullCone 支持(需要 xray-core 服务端版本 v1.3.0+)
|
||
/// </summary>
|
||
public bool FullCone = false;
|
||
}
|
||
}
|