Spotify.NET/SpotifyAPI/Local/SpotifyLocalAPIConfig.cs
2017-09-03 14:53:04 +02:00

12 lines
300 B
C#

namespace SpotifyAPI.Local
{
// ReSharper disable once InconsistentNaming
public class SpotifyLocalAPIConfig
{
public int TimerInterval { get; set; } = 50;
public string HostUrl { get; set; } = "http://127.0.0.1";
public int Port { get; set; } = 4381;
}
}