mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
11 lines
214 B
C#
11 lines
214 B
C#
namespace Metadata.Features.Jobs;
|
|
|
|
public abstract class BaseJob : IMetadataJob
|
|
{
|
|
public abstract bool IsScheduelable { get; }
|
|
|
|
public abstract string JobName { get; }
|
|
|
|
public abstract Task Invoke();
|
|
}
|