mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
11 lines
202 B
C#
11 lines
202 B
C#
using System.Collections.Generic;
|
|
using Ombi.Services.Models;
|
|
|
|
namespace Ombi.Services.Interfaces
|
|
{
|
|
public interface IRadarrCacher
|
|
{
|
|
void Queued();
|
|
int[] QueuedIds();
|
|
}
|
|
}
|