2017-09-03 13:44:11 +01:00
|
|
|
|
namespace SpotifyAPI.Local
|
|
|
|
|
{
|
|
|
|
|
// ReSharper disable once InconsistentNaming
|
|
|
|
|
public class SpotifyLocalAPIConfig
|
|
|
|
|
{
|
|
|
|
|
public int TimerInterval { get; set; } = 50;
|
|
|
|
|
|
2017-09-03 13:53:04 +01:00
|
|
|
|
public string HostUrl { get; set; } = "http://127.0.0.1";
|
2017-09-03 13:44:11 +01:00
|
|
|
|
|
2017-09-03 13:53:04 +01:00
|
|
|
|
public int Port { get; set; } = 4381;
|
2018-03-25 18:39:19 +01:00
|
|
|
|
|
|
|
|
|
public ProxyConfig ProxyConfig { get; set; }
|
2018-07-18 20:51:56 +01:00
|
|
|
|
|
|
|
|
|
public string UserAgent { get; set; } = "Spotify (1.0.85.257.g0f8531bd)";
|
2017-09-03 13:44:11 +01:00
|
|
|
|
}
|
|
|
|
|
}
|