From 40f9cbad33fb3a8a46392bf2f33326ca23f6917d Mon Sep 17 00:00:00 2001 From: Tim Stadler Date: Sun, 14 Oct 2018 15:26:39 +0200 Subject: [PATCH] Forgot one method :) --- src/IF.Lastfm.Core/Api/ITagApi.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/IF.Lastfm.Core/Api/ITagApi.cs b/src/IF.Lastfm.Core/Api/ITagApi.cs index 3243dbb..69c05c2 100644 --- a/src/IF.Lastfm.Core/Api/ITagApi.cs +++ b/src/IF.Lastfm.Core/Api/ITagApi.cs @@ -10,6 +10,7 @@ public interface ITagApi Task> GetInfoAsync(string tagName); Task> GetTopAlbumsAsync(string tagName,int page,int itemsPerPage); Task> GetTopArtistsAsync(string tagName, int page, int itemsPerPage); + Task> GetTopTracksAsync(string tagName, int page, int itemsPerPage); Task> GetTopTagsAsync(); } } \ No newline at end of file