Exemplo n.º 1
0
 public TrackResult[] SearchTracks(string input, int limit = 20)
 {
     return(_spotify.SearchItems(input, SearchType.Track, limit).Tracks.Items
            .Select(fullTrack => new TrackResult(fullTrack)).ToArray());
 }