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

16 lines
317 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(PlayableItemConverter))]
public T Track { get; set; }
}
}