Files
torrentio/src/producer/Features/JobSupport/ICrawlerJob.cs
purple_emily 79409915cf Run pre-commit
2024-03-08 14:34:53 +00:00

8 lines
159 B
C#

namespace Producer.Features.JobSupport;
public interface ICrawlerJob<out TCrawler> : IJob
where TCrawler : ICrawler
{
TCrawler CrawlerType { get; }
}