using System; using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.Playlists.Spotify.Model { [Serializable] public class LocalSpotifyTrack { public LocalSpotifyTrack() { Artists = new List(); } public string TrackId { get; set; } public string TrackName { get; set; } public List Artists { get; set; } public string ISRC { get; set; } public int? Popularity { 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 int AlbumPosition { get; set; } public LocalSpotifyAlbum Album { get; set; } } }