Ombi/Ombi.Services/Interfaces/IRadarrCacher.cs
2017-01-18 21:05:08 +00: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();
}
}