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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace Shadowsocks.Net.Settings
- {
- public class ForwardProxySettings
- {
- public bool NoProxy { get; set; }
- public bool UseSocks5Proxy { get; set; }
- public bool UseHttpProxy { get; set; }
- public string Address { get; set; }
- public int Port { get; set; }
- public string Username { get; set; }
- public string Password { get; set; }
-
- public ForwardProxySettings()
- {
- NoProxy = true;
- UseSocks5Proxy = false;
- UseHttpProxy = false;
- Address = "";
- Port = 1088;
- Username = "";
- Password = "";
- }
- }
- }
|