mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
19 lines
412 B
C#
19 lines
412 B
C#
using System.Collections.Generic;
|
||
|
||
namespace Netch.Models.Mode.ShareMode
|
||
{
|
||
public class ShareMode : Mode
|
||
{
|
||
public ShareMode()
|
||
{
|
||
this.Type = ModeType.ShareMode;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 绕过列表(IP CIDR)
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonProperty("bypass")]
|
||
public List<string> BypassList;
|
||
}
|
||
}
|