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