mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
12 lines
No EOL
258 B
C#
12 lines
No EOL
258 B
C#
using Ombi.Core.SettingModels;
|
|
using Quartz;
|
|
|
|
namespace Ombi.Services.Jobs
|
|
{
|
|
public interface IPlexEpisodeCacher
|
|
{
|
|
void CacheEpisodes(PlexSettings settings);
|
|
void Execute(IJobExecutionContext context);
|
|
void Start();
|
|
}
|
|
} |