Files
Archive/shadowsocks-windows/shadowsocks-csharp/Model/HotKeyConfig.cs
2024-12-31 19:31:59 +01:00

33 lines
749 B
C#

using System;
namespace Shadowsocks.Model
{
/*
* Format:
* <modifiers-combination>+<key>
*
*/
[Serializable]
public class HotkeyConfig
{
public string SwitchSystemProxy;
public string SwitchSystemProxyMode;
public string SwitchAllowLan;
public string ShowLogs;
public string ServerMoveUp;
public string ServerMoveDown;
public bool RegHotkeysAtStartup;
public HotkeyConfig()
{
SwitchSystemProxy = "";
SwitchSystemProxyMode = "";
SwitchAllowLan = "";
ShowLogs = "";
ServerMoveUp = "";
ServerMoveDown = "";
RegHotkeysAtStartup = false;
}
}
}