mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-11 11:00:29 +08:00
10 lines
238 B
C#
10 lines
238 B
C#
namespace Netch.Models.Modes.TunMode;
|
|
|
|
public class TunMode : Mode
|
|
{
|
|
public override ModeType Type => ModeType.TunMode;
|
|
|
|
public List<string> Bypass { get; set; } = new();
|
|
|
|
public List<string> Handle { get; set; } = new();
|
|
} |