mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
10 lines
No EOL
183 B
C#
10 lines
No EOL
183 B
C#
using Quartz;
|
|
|
|
namespace Ombi.Services.Jobs
|
|
{
|
|
public interface IPlexContentCacher
|
|
{
|
|
void CacheContent();
|
|
void Execute(IJobExecutionContext context);
|
|
}
|
|
} |