Forgot one method :)

This commit is contained in:
Tim Stadler 2018-10-14 15:26:39 +02:00
parent a74aa21943
commit 40f9cbad33

View File

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