mirror of
				https://github.com/bolucat/Archive.git
				synced 2025-10-31 11:57:05 +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;
 | |
|         }
 | |
|     }
 | |
| } | 
![github-action[bot]](/assets/img/avatar_default.png)