PlayHistoryItem SimpleTrack --> FullTrack, fixes #591

This commit is contained in:
Jonas Dellinger 2021-04-15 17:25:29 +02:00
parent df8ee5e48b
commit ddb1dc0cc0

View File

@ -3,7 +3,7 @@ namespace SpotifyAPI.Web
{ {
public class PlayHistoryItem public class PlayHistoryItem
{ {
public SimpleTrack Track { get; set; } = default!; public FullTrack Track { get; set; } = default!;
public DateTime PlayedAt { get; set; } public DateTime PlayedAt { get; set; }
public Context Context { get; set; } = default!; public Context Context { get; set; } = default!;
} }