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 750 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 ChangeToPac;
  14. public string ChangeToGlobal;
  15. public string SwitchAllowLan;
  16. public string ShowLogs;
  17. public string ServerMoveUp;
  18. public string ServerMoveDown;
  19. public HotkeyConfig()
  20. {
  21. SwitchSystemProxy = "";
  22. ChangeToPac = "";
  23. ChangeToGlobal = "";
  24. SwitchAllowLan = "";
  25. ShowLogs = "";
  26. ServerMoveUp = "";
  27. ServerMoveDown = "";
  28. }
  29. }
  30. }