Ombi/Old/Ombi.Services/Interfaces/ISonarrCacher.cs
2017-05-16 08:31:44 +01: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();
}
}