mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +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; }
|
||
|
}
|
||
|
}
|