Spotify.NET/SpotifyAPI.Web/Models/Response/PlaylistTrack.cs
2020-05-02 13:04:26 +02:00

15 lines
331 B
C#

using System;
using Newtonsoft.Json;
namespace SpotifyAPI.Web
{
public class PlaylistTrack
{
public DateTime? AddedAt { get; set; }
public PublicUser AddedBy { get; set; }
public bool IsLocal { get; set; }
[JsonConverter(typeof(PlaylistElementConverter))]
public IPlaylistElement Track { get; set; }
}
}