Ombi/Ombi.Services/Interfaces/ISonarrCacher.cs
2016-12-19 20:14:31 +00:00

11 lines
228 B
C#

using System.Collections.Generic;
using Ombi.Services.Models;
namespace Ombi.Services.Interfaces
{
public interface ISonarrCacher
{
void Queued();
IEnumerable<SonarrCachedResult> QueuedIds();
}
}