Spotify.NET/SpotifyAPI.Web/Models/Response/PlaylistTrack.cs
2020-05-25 18:00:47 +02:00

17 lines
342 B
C#

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