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.

SysproxyConfig.cs 604 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. namespace Shadowsocks.Model
  3. {
  4. /*
  5. * Data come from WinINET
  6. */
  7. [Serializable]
  8. public class SysproxyConfig
  9. {
  10. public bool UserSettingsRecorded;
  11. public string Flags;
  12. public string ProxyServer;
  13. public string BypassList;
  14. public string PacUrl;
  15. public SysproxyConfig()
  16. {
  17. UserSettingsRecorded = false;
  18. Flags = "1";
  19. // Watchout, Nullable! See #2100
  20. ProxyServer = "";
  21. BypassList = "";
  22. PacUrl = "";
  23. }
  24. }
  25. }