mirror of
				https://github.com/bolucat/Archive.git
				synced 2025-10-31 11:57:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			577 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			577 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace Shadowsocks.Model
 | |
| {
 | |
|     /*
 | |
|      * Data come from WinINET
 | |
|      */
 | |
| 
 | |
|     [Serializable]
 | |
|     public class SysproxyConfig
 | |
|     {
 | |
|         public bool UserSettingsRecorded;
 | |
|         public string Flags;
 | |
|         public string ProxyServer;
 | |
|         public string BypassList;
 | |
|         public string PacUrl;
 | |
| 
 | |
|         public SysproxyConfig()
 | |
|         {
 | |
|             UserSettingsRecorded = false;
 | |
|             Flags = "1";
 | |
|             // Watchout, Nullable! See #2100
 | |
|             ProxyServer = "";
 | |
|             BypassList = "";
 | |
|             PacUrl = "";
 | |
|         }
 | |
|     }
 | |
| } | 
![github-action[bot]](/assets/img/avatar_default.png)