Ombi/Old/Ombi.Services/Jobs/Interfaces/IEmbyEpisodeCacher.cs
2017-05-16 08:31:44 +01:00

12 lines
No EOL
269 B
C#

using Ombi.Core.SettingModels;
using Quartz;
namespace Ombi.Services.Jobs.Interfaces
{
public interface IEmbyEpisodeCacher
{
void CacheEpisodes(EmbySettings settings);
void Execute(IJobExecutionContext context);
void Start();
}
}