using System; using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.Playlists.Models { [Serializable] public class GeneralSpotifyTrack { public string Id { get; set; } public string Name { get; set; } public string Isrc { get; set; } public int Popularity { get; set; } public int Duration { get; set; } public int AlbumIndex { get; set; } public UpdatePlaylistAlbum Album { get; set; } public List Artists { get; set; } } }