Spotify.NET/SpotifyAPI.Web/Models/Response/PlaylistTrack.cs
2020-05-03 01:00:35 +02:00

16 lines
320 B
C#

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