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

12 lines
232 B
C#
Raw Normal View History

2020-05-07 17:03:20 +01:00
using System;
namespace SpotifyAPI.Web
{
public class PlayHistoryItem
{
public FullTrack Track { get; set; } = default!;
public DateTime PlayedAt { get; set; }
2020-05-25 17:00:38 +01:00
public Context Context { get; set; } = default!;
2020-05-07 17:03:20 +01:00
}
}
2020-05-25 17:00:38 +01:00