mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Started the Radarr Settings #865
This commit is contained in:
parent
521f7c3ea0
commit
7595ccf6c4
34 changed files with 637 additions and 33 deletions
15
src/Ombi.Api.Radarr/IRadarrApi.cs
Normal file
15
src/Ombi.Api.Radarr/IRadarrApi.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Ombi.Api.Radarr.Models;
|
||||
|
||||
namespace Ombi.Api.Radarr
|
||||
{
|
||||
public interface IRadarrApi
|
||||
{
|
||||
Task<List<MovieResponse>> GetMovies(string apiKey, Uri baseUrl);
|
||||
Task<List<RadarrProfile>> GetProfiles(string apiKey, Uri baseUrl);
|
||||
Task<List<RadarrRootFolder>> GetRootFolders(string apiKey, Uri baseUrl);
|
||||
Task<SystemStatus> SystemStatus(string apiKey, Uri baseUrl);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue