using Sony.Filtr.ApolloAPI.Models; using System; using System.Collections.Generic; namespace Sony.Filtr.DspWebAPI.DspModels { public class ConsumeAnalyticsPlaylistsSummary { public ConsumeAnalyticsPlaylistsSummary() { this.Items = new List(); } public List Items { get; set; } } public class ConsumeAnalyticsPlaylistsSummaryItem { public int LocalStreams { get; set; } public int GlobalStreams { get; set; } public int DaysStreamed { get; set; } public string PlaylistId { get; set; } public string Isrc { get; set; } } }