You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

HotKeyConfig.cs 697 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. namespace Shadowsocks.Model
  3. {
  4. /*
  5. * Format:
  6. * <modifiers-combination>+<key>
  7. *
  8. */
  9. [Serializable]
  10. public class HotkeyConfig
  11. {
  12. public string SwitchSystemProxy;
  13. public string SwitchSystemProxyMode;
  14. public string SwitchAllowLan;
  15. public string ShowLogs;
  16. public string ServerMoveUp;
  17. public string ServerMoveDown;
  18. public HotkeyConfig()
  19. {
  20. SwitchSystemProxy = "";
  21. SwitchSystemProxyMode = "";
  22. SwitchAllowLan = "";
  23. ShowLogs = "";
  24. ServerMoveUp = "";
  25. ServerMoveDown = "";
  26. }
  27. }
  28. }