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

12 lines
253 B
C#
Raw Normal View History

2020-05-01 19:05:28 +01:00
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; }
}
}