Spotify.NET/SpotifyAPI/Local/SpotifyLocalAPIConfig.cs

12 lines
301 B
C#
Raw Normal View History

2017-09-03 13:44:11 +01:00
namespace SpotifyAPI.Local
{
// ReSharper disable once InconsistentNaming
public class SpotifyLocalAPIConfig
{
public int TimerInterval { get; set; } = 50;
public string HostUrl { get; set; } = "https://127.0.0.1";
public int Port { get; set; } = 4371;
}
}