mirror of
https://github.com/knightcrawler-stremio/knightcrawler.git
synced 2024-12-20 03:29:51 +00:00
We can use this collection as an alternative source to lookup imdb ids, which would be executed before name_to_imdb is called in the consumer.
7 lines
142 B
C#
7 lines
142 B
C#
namespace Metadata.Features.Jobs;
|
|
|
|
public interface IMetadataJob : IInvocable
|
|
{
|
|
bool IsScheduelable { get; }
|
|
string JobName { get; }
|
|
} |