mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
16 lines
343 B
C#
16 lines
343 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; }
|
|
}
|
|
}
|