namespace SpotifyAPI.Web { public interface IProxyConfig { string Host { get; } int Port { get; } string User { get; } string Password { get; } bool SkipSSLCheck { get; } /// /// Whether to bypass the proxy server for local addresses. /// bool BypassProxyOnLocal { get; } } }