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

15 lines
331 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-01 19:05:28 +01:00
public IPlaylistElement Track { get; set; }
}
}