using Sony.Filtr.Contracts.Definitions; using Sony.Filtr.NewMusicFriday.Caching.Models; using System; using System.Collections.Generic; namespace Sony.Filtr.AdminAPI.ViewModels.NewMusicFriday { public class NewMusicFridayTrackViewModel { 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 SpotifyAnalyticsAccount? SonyRelease { get; set; } public ICollection Playlists { get; set; } [Obsolete("Remove when frontend has changed to SonyRelease")] public bool? IsSony { get; set; } } }