using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.Core.SpotifyBrowse.Data { public class SpotifyBrowseCategoryOverallStats { public int TotalPlaylistCount { get; set; } public SonyAmounts TotalSonyPlaylists { get; set; } public SonyAmounts TotalSonyPlaylistsInFirstBracket { get; set; } public SonyAmounts TotalSonyPlaylistsInSecondBracket { get; set; } public SonyAmounts TotalSonyPlaylistsAfterBrackets { get; set; } public DateTime Date { get; set; } public Dictionary CategoryStats { get; set; } public List OwnerSpread { get; set; } } public class SpotifyBrowseCategoryStat { public string CategoryId { get; set; } public string CategoryName { get; set; } public int PlaylistCount { get; set; } public SonyAmounts SonyPlaylists { get; set; } public SonyAmounts SonyPlaylistsInFirstBracket { get; set; } public SonyAmounts SonyPlaylistsInSecondBracket { get; set; } public SonyAmounts SonyPlaylistsAfterBrackets { get; set; } } public class SonyAmounts { public int SonyPlaylists { get; set; } public int LocalSonyPlaylists { get; set; } } }