using System; using System.Collections.Generic; namespace Sony.Filtr.AppleMusic.BestOfTheWeek.Caching.Models { [Serializable] public class BestOfTheWeekPlaylistTrackCacheModel { public string PlaylistId { get; set; } public string Storefront { get; set; } public string TrackId { get; set; } public string Isrc { get; set; } public int PlaylistIndex { get; set; } public DateTime Date { get; set; } public string TrackName { get; set; } public string AlbumImageUrl { get; set; } public IList Artists { get; set; } } }