Spotify.NET/SpotifyAPI.Web/Models/Response/CurrentlyPlayingContext.cs

22 lines
658 B
C#
Raw Normal View History

2020-05-07 17:03:20 +01:00
using Newtonsoft.Json;
namespace SpotifyAPI.Web
{
public class CurrentlyPlayingContext
{
public Device Device { get; private set; }
public string RepeatState { get; private set; }
public bool ShuffleState { get; private set; }
public Context Context { get; private set; }
public long Timestamp { get; private set; }
public int ProgressMs { get; private set; }
public bool IsPlaying { get; private set; }
[JsonConverter(typeof(PlayableItemConverter))]
public IPlayableItem Item { get; private set; }
public string CurrentlyPlayingType { get; private set; }
public Actions Actions { get; private set; }
}
}