using System.Collections.Generic; namespace Sony.Filtr.AdminAPI.ViewModels { public class StatisticsViewModel { public Dictionary TopRequestedArtists { get; set; } public Dictionary TopRequestedTags { get; set; } public Dictionary TopPersonas { get; set; } public Dictionary TopRecommendedArtists { get; set; } public Dictionary TopRecommendedTracks { get; set; } public int NumSavedPlaylistsGlobal { get; set; } public int NumSavedPlaylists { get; set; } public int NumGeneratedPlaylistsGlobal { get; set; } public int NumGeneratedPlaylists { get; set; } } }