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.

ProxyConfig.cs 438 B

12345678910111213141516171819202122
  1. using Shadowsocks.View;
  2. using System;
  3. using System.Drawing;
  4. using System.Windows.Forms;
  5. namespace Shadowsocks.Model
  6. {
  7. [Serializable]
  8. public class ProxyConfig
  9. {
  10. public bool useProxy;
  11. public string proxyServer;
  12. public int proxyPort;
  13. public ProxyConfig()
  14. {
  15. useProxy = false;
  16. proxyServer = "";
  17. proxyPort = 0;
  18. }
  19. }
  20. }