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