8 lines
159 B
C#
8 lines
159 B
C#
namespace Producer.Features.JobSupport;
|
|
|
|
public interface ICrawlerJob<out TCrawler> : IJob
|
|
where TCrawler : ICrawler
|
|
{
|
|
TCrawler CrawlerType { get; }
|
|
}
|