mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 07:22:35 -07:00
14 lines
No EOL
371 B
C#
14 lines
No EOL
371 B
C#
using System.Collections.Generic;
|
|
using Ombi.Core.SettingModels;
|
|
using Ombi.Store;
|
|
using Quartz;
|
|
|
|
namespace Ombi.Services.Jobs
|
|
{
|
|
public interface IFaultQueueHandler
|
|
{
|
|
void Execute(IJobExecutionContext context);
|
|
bool ShouldAutoApprove(RequestType requestType, PlexRequestSettings prSettings, List<string> username);
|
|
void Start();
|
|
}
|
|
} |