Ombi/Ombi.Services/Jobs/Interfaces/IEmbyEpisodeCacher.cs
2017-01-29 00:13:07 +00: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();
}
}