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 781 B

123456789101112131415161718192021222324252627282930313233
  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 bool RegHotkeysAtStartup;
  19. public HotkeyConfig()
  20. {
  21. SwitchSystemProxy = "";
  22. SwitchSystemProxyMode = "";
  23. SwitchAllowLan = "";
  24. ShowLogs = "";
  25. ServerMoveUp = "";
  26. ServerMoveDown = "";
  27. RegHotkeysAtStartup = false;
  28. }
  29. }
  30. }