Ombi/Ombi.Services/Interfaces/IRecentlyAdded.cs
2017-01-24 09:02:17 +00:00

11 lines
No EOL
193 B
C#

using Quartz;
namespace Ombi.Services.Jobs
{
public interface IRecentlyAdded
{
void Execute(IJobExecutionContext context);
void Test();
void Start();
}
}