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

123456789101112131415161718192021222324252627
  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. ProxyServer = "";
  20. BypassList = "";
  21. PacUrl = "";
  22. }
  23. }
  24. }