namespace ElectronNET.API.Entities { /// /// /// public class ProxyConfig { /// /// The URL associated with the PAC file. /// public string PacScript { get; set; } /// /// Rules indicating which proxies to use. /// public string ProxyRules { get; set; } /// /// Rules indicating which URLs should bypass the proxy settings. /// public string ProxyBypassRules { get; set; } /// /// /// /// The URL associated with the PAC file. /// Rules indicating which proxies to use. /// Rules indicating which URLs should bypass the proxy settings. public ProxyConfig(string pacScript, string proxyRules, string proxyBypassRules) { PacScript = pacScript; ProxyRules = proxyRules; ProxyBypassRules = proxyBypassRules; } } }