using System.Collections.Generic; using Sony.Filtr.Contracts.Entities; namespace Sony.Filtr.Core.SpotifyBrowse.Data { public class SpotifyBrowseTopList { public int ApplicationId { get; set; } public string CategoryId { get; set; } public string CategoryName { get; set; } public SonyAmounts SonyPlaylists { get; set; } public SonyAmounts SonyPlaylistsInFirstBracket { get; set; } public SonyAmounts SonyPlaylistsInSecondBracket { get; set; } public SonyAmounts SonyPlaylistsAfterBrackets { get; set; } public List Items { get; set; } public List OwnerSpread { get; set; } } }