using System.Collections.Generic; using Newtonsoft.Json; namespace Sony.Filtr.Contracts.Entities { public class SpotifyBrowseTopListItem { public int Position { get; set; } public string PlaylistURI { get; set; } public string PlaylistName { get; set; } public string OwnerUsername { get; set; } public int Peak { get; set; } public int? TotalStreams { get; set; } public int? UniqueUserStreams { get; set; } public int? Followers { get; set; } public int? BuzzCategoryId { get; set; } public string BuzzCategoryName { get; set; } public bool IsSony { get; set; } public string PlaylistMarket { get; set; } public string SpotifyImageUrl { get; set; } public IEnumerable AllBrowseMarkets { get; set; } public string CategoryName { get; set; } public string CategoryId { get; set; } [JsonIgnore] public string BrowseMarketString { get; set; } [JsonIgnore] public string BrowseMarket { get; set; } } }