Spotify.NET/SpotifyAPI.Web/Models/PlayHistory.cs

17 lines
373 B
C#
Raw Normal View History

2017-03-02 21:28:55 +00:00
using System;
using Newtonsoft.Json;
namespace SpotifyAPI.Web.Models
{
public class PlayHistory : BasicModel
{
[JsonProperty("track")]
public SimpleTrack Track { get; set; }
[JsonProperty("played_at")]
public DateTime PlayedAt { get; set; }
[JsonProperty("context")]
public Context Context { get; set; }
}
}