using System; using System.Collections.Generic; namespace Sony.Filtr.Playlists.Spotify.Model { public class TracklistItem { public TracklistItem() { Artists = new List(); } public int Position { get; set; } public string TrackId { get; set; } public string TrackName { get; set; } public string ArtistName { get; set; } public List Artists { get; set; } public DateTime? Added { get; set; } public DateTime? EarliestAdded { get; set; } public string ISRC { get; set; } public string AlbumId { get; set; } public string AlbumName { get; set; } public string AlbumUpc { get; set; } public bool IsSony { get; set; } public int? Popularity { get; set; } //public int ArtworkUrl { get; set; } public float? Danceability { get; set; } public float? Energy { get; set; } public int? AudioKey { get; set; } public float? Loudness { get; set; } public int? AudioMode { get; set; } public float? Speechiness { get; set; } public float? Acousticness { get; set; } public float? Instrumentalness { get; set; } public float? Liveness { get; set; } public float? Valence { get; set; } public float? Tempo { get; set; } } public class SpotifyArtistReferenceViewModel { public string Name { get; set; } public string Uri { get; set; } } }