using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Sony.ChartBot.Entities.ChartApi; using Sony.ChartBot.Entities.Storage; namespace Sony.ChartBot.Entities { public class ChartTrackModel { public string ArtistName { get; set; } public string ArtistArtworkUrl { get; set; } public string TrackName { get; set; } public string TrackReference { get; set; } public string TrackArtworkUrl { get; set; } public IEnumerable Positions { get; set; } public IEnumerable Charts { get; set; } public SupportedCountry Country { get; set; } public bool? CurrentUserIsSubscribing { get; set; } } }