mirror of
https://github.com/netchx/netch.git
synced 2026-03-16 17:53:17 +08:00
31 lines
773 B
C#
31 lines
773 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Netch.Models.Mode.WebMode
|
|
{
|
|
public class WebMode : Mode
|
|
{
|
|
public WebMode()
|
|
{
|
|
this.Type = ModeType.WebMode;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 设置系统代理
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("setSystemProxy")]
|
|
public bool SetSystemProxy;
|
|
|
|
/// <summary>
|
|
/// 绕过域名后缀
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("bypassDomainSuffix")]
|
|
public List<string> BypassDomainSuffix;
|
|
|
|
/// <summary>
|
|
/// 绕过 IP 地址
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("bypassIPs")]
|
|
public List<string> BypassIPs;
|
|
}
|
|
}
|