mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
17 lines
340 B
C#
17 lines
340 B
C#
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; }
|
|
}
|
|
} |