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

17 lines
340 B
C#
Raw Normal View History

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