Ombi/Old/Ombi.Services/Interfaces/IRadarrCacher.cs
2017-05-16 08:31:44 +01:00

11 lines
202 B
C#

using System.Collections.Generic;
using Ombi.Services.Models;
namespace Ombi.Services.Interfaces
{
public interface IRadarrCacher
{
void Queued();
int[] QueuedIds();
}
}