using System.Collections.Generic; using Sony.Filtr.AdminAPI.Modules; using Sony.Filtr.SpotifyWebAPI.Model; namespace Sony.Filtr.AdminAPI.ViewModels.PlaylistCuration { public class PlaylistCurationTrackItemViewModel { public List Artists { get; set; } public string Name { get; set; } public string AlbumImageUrl { get; set; } public int Popularity { get; set; } public string SpotifyUri { get; set; } public string Isrc { get; set; } public bool IsSony { get; set; } public List Regions { get; set; } public string PreviewUrl { get; set; } public int Duration { get; set; } public bool Explicit { get; set; } public List Copyright { get; set; } public string AlbumName { get; set; } public string AlbumUri { get; set; } public string AlbumUpc { get; set; } } }