pull/4711/head
2dust 2024-02-03 10:26:37 +08:00
parent ff215bc9aa
commit 4d0ee652d8
1 changed files with 5 additions and 6 deletions

View File

@ -3,8 +3,7 @@
namespace v2rayN.Mode namespace v2rayN.Mode
{ {
/// <summary> /// <summary>
/// v2ray配置文件实体类 /// v2ray配置文件实体类 例子SampleConfig.txt
/// 例子SampleConfig.txt
/// </summary> /// </summary>
public class V2rayConfig public class V2rayConfig
{ {
@ -32,7 +31,7 @@ namespace v2rayN.Mode
public API4Ray api { get; set; } public API4Ray api { get; set; }
/// </summary> /// </summary>
public Policy4Ray policy; public Policy4Ray policy { get; set; }
/// <summary> /// <summary>
/// DNS 配置 /// DNS 配置
@ -56,13 +55,13 @@ namespace v2rayN.Mode
public class Policy4Ray public class Policy4Ray
{ {
public SystemPolicy4Ray system; public SystemPolicy4Ray system { get; set; }
} }
public class SystemPolicy4Ray public class SystemPolicy4Ray
{ {
public bool statsOutboundUplink; public bool statsOutboundUplink { get; set; }
public bool statsOutboundDownlink; public bool statsOutboundDownlink { get; set; }
} }
public class Log4Ray public class Log4Ray