mirror of
https://github.com/bolucat/Archive.git
synced 2025-11-03 02:53:53 +08:00
33 lines
749 B
C#
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;
|
|
}
|
|
}
|
|
} |