mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 16:06:27 +00:00
12 lines
232 B
C#
12 lines
232 B
C#
using System;
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class PlayHistoryItem
|
|
{
|
|
public FullTrack Track { get; set; } = default!;
|
|
public DateTime PlayedAt { get; set; }
|
|
public Context Context { get; set; } = default!;
|
|
}
|
|
}
|
|
|