mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2025-01-11 14:07:47 +00:00
16 lines
341 B
C#
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; }
|
|
}
|
|
}
|