Spotify.NET/SpotifyAPI.Web/Http/Interfaces/IProxyConfig.cs
2020-05-12 20:33:25 +02:00

16 lines
341 B
C#

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