mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
#150 sonarr/sickrage cache checking. sickrage has a couple small items left
This commit is contained in:
parent
35310d35ed
commit
5f67302b32
17 changed files with 332 additions and 9 deletions
8
PlexRequests.Services/Interfaces/ISickRageCacher.cs
Normal file
8
PlexRequests.Services/Interfaces/ISickRageCacher.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
namespace PlexRequests.Services.Interfaces
|
||||
{
|
||||
public interface ISickRageCacher
|
||||
{
|
||||
void Queued(long check);
|
||||
int[] QueuedIds();
|
||||
}
|
||||
}
|
8
PlexRequests.Services/Interfaces/ISonarrCacher.cs
Normal file
8
PlexRequests.Services/Interfaces/ISonarrCacher.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
namespace PlexRequests.Services.Interfaces
|
||||
{
|
||||
public interface ISonarrCacher
|
||||
{
|
||||
void Queued(long check);
|
||||
int[] QueuedIds();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue