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

22 lines
544 B
C#
Raw Normal View History

2020-05-07 17:03:20 +01:00
using Newtonsoft.Json;
namespace SpotifyAPI.Web
{
public class CurrentlyPlaying
{
2020-05-25 17:00:38 +01:00
public Context Context { get; set; } = default!;
public string CurrentlyPlayingType { get; set; } = default!;
public bool IsPlaying { get; set; }
2020-05-07 17:03:20 +01:00
/// <summary>
/// Can be a FullTrack or FullEpisode
/// </summary>
/// <value></value>
2020-05-07 17:03:20 +01:00
[JsonConverter(typeof(PlayableItemConverter))]
2020-05-25 17:00:38 +01:00
public IPlayableItem Item { get; set; } = default!;
public int? ProgressMs { get; set; }
public long Timestamp { get; set; }
2020-05-07 17:03:20 +01:00
}
}
2020-05-25 17:00:38 +01:00