Complete ITagApi interface definition

This commit is contained in:
Tim Stadler 2018-10-14 15:20:46 +02:00
parent 4850cad6b4
commit a74aa21943

View File

@ -9,5 +9,7 @@ public interface ITagApi
Task<PageResponse<LastTag>> GetSimilarAsync(string tagName);
Task<LastResponse<LastTag>> GetInfoAsync(string tagName);
Task<PageResponse<LastAlbum>> GetTopAlbumsAsync(string tagName,int page,int itemsPerPage);
Task<PageResponse<LastArtist>> GetTopArtistsAsync(string tagName, int page, int itemsPerPage);
Task<PageResponse<LastTag>> GetTopTagsAsync();
}
}