using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sony.Filtr.Playlists.Spotify.Model { public class TrackPlaylistSummary { public string Identifier { get; set; } public int? BuzzCategoryId { get; set; } public int PlaylistCount { get; set; } public int Followers { get; set; } } }