using System.Linq; namespace Sony.Filtr.Playlists.Spotify.Model.History { public class HistoricTrackChange { public string ISRC { get; set; } public string TrackId { get; set; } public int? BuzzCategoryId { get; set; } public int PlaylistCountStart { get; set; } public int PlaylistCountEnd { get; set; } public int FollowersStart { get; set; } public int FollowersEnd { get; set; } public int Added { get; set; } public int Removed { get; set; } } }