Browse Source

Bug fix

pull/4711/head
2dust 10 months ago
parent
commit
4d0ee652d8
  1. 11
      v2rayN/v2rayN/Mode/V2rayConfig.cs

11
v2rayN/v2rayN/Mode/V2rayConfig.cs

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

Loading…
Cancel
Save