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

12 lines
253 B
C#

using System;
namespace SpotifyAPI.Web
{
public class PlaylistTrack
{
public DateTime? AddedAt { get; set; }
public PublicUser AddedBy { get; set; }
public bool IsLocal { get; set; }
public IPlaylistElement Track { get; set; }
}
}