using Newtonsoft.Json; namespace SpotifyAPI.Web.Models { public class SearchItem : BasicModel { [JsonProperty("artists")] public Paging Artists { get; set; } [JsonProperty("albums")] public Paging Albums { get; set; } [JsonProperty("tracks")] public Paging Tracks { get; set; } [JsonProperty("playlists")] public Paging Playlists { get; set; } } }