using System; using System.Linq; namespace Sony.Filtr.Playlists.Spotify.Model.History { public class TrackPlaylistDateSummary { public DateTime Date { get; set; } public int PlaylistCount { get; set; } public int PlaylistFollowers { get; set; } } }