using Sony.Filtr.AppleMusic.BestOfTheWeek.Caching.Models; using System.Collections.Generic; namespace Sony.Filtr.AdminAPI.ViewModels.BestOfTheWeek { public class BestOfTheWeekTrackViewModel { public string Isrc { get; set; } public string TrackId { get; set; } public IEnumerable Artists { get; set; } public string TrackName { get; set; } public int TopTenFeatureCount { get; set; } public string AlbumImageUrl { get; set; } public ICollection Playlists { get; set; } } }