From a74aa21943edb63a07e4e0a0167ce631b2e61f89 Mon Sep 17 00:00:00 2001 From: Tim Stadler Date: Sun, 14 Oct 2018 15:20:46 +0200 Subject: [PATCH] Complete ITagApi interface definition --- src/IF.Lastfm.Core/Api/ITagApi.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/IF.Lastfm.Core/Api/ITagApi.cs b/src/IF.Lastfm.Core/Api/ITagApi.cs index 8ce94d6..3243dbb 100644 --- a/src/IF.Lastfm.Core/Api/ITagApi.cs +++ b/src/IF.Lastfm.Core/Api/ITagApi.cs @@ -9,5 +9,7 @@ public interface ITagApi Task> GetSimilarAsync(string tagName); Task> GetInfoAsync(string tagName); Task> GetTopAlbumsAsync(string tagName,int page,int itemsPerPage); + Task> GetTopArtistsAsync(string tagName, int page, int itemsPerPage); + Task> GetTopTagsAsync(); } } \ No newline at end of file