Small work on the API !wip

This commit is contained in:
TidusJar 2018-08-23 08:58:13 +01:00
parent 432c7763ee
commit 26d620cf01
5 changed files with 165 additions and 9 deletions

View file

@ -10,5 +10,8 @@ namespace Ombi.Api.Lidarr
Task<List<ArtistLookup>> ArtistLookup(string searchTerm, string apiKey, string baseUrl);
Task<List<LidarrProfile>> GetProfiles(string apiKey, string baseUrl);
Task<List<LidarrRootFolder>> GetRootFolders(string apiKey, string baseUrl);
Task<ArtistResult> GetArtist(int artistId, string apiKey, string baseUrl);
Task<ArtistResult> GetArtistByForignId(string foreignArtistId, string apiKey, string baseUrl);
Task<AlbumByArtistResponse> GetAlbumsByArtist(int artistId, string apiKey, string baseUrl);
}
}