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

15 lines
328 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
using System;
using Newtonsoft.Json;
2020-05-01 19:05:28 +01:00
namespace SpotifyAPI.Web
{
public class PlaylistTrack
{
public DateTime? AddedAt { get; set; }
public PublicUser AddedBy { get; set; }
public bool IsLocal { get; set; }
[JsonConverter(typeof(PlaylistElementConverter))]
2020-05-02 21:48:21 +01:00
public IPlaylistItem Track { get; set; }
2020-05-01 19:05:28 +01:00
}
}