Ombi/Ombi.Services/Jobs/Interfaces/IPlexUserChecker.cs
2017-01-29 00:13:07 +00:00

10 lines
No EOL
174 B
C#

using Quartz;
namespace Ombi.Services.Jobs
{
public interface IPlexUserChecker
{
void Execute(IJobExecutionContext context);
void Start();
}
}