Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/DownloadClient/IDownloadServiceFactory.cs

8 lines
245 B
C#

using Cleanuparr.Persistence.Models.Configuration;
namespace Cleanuparr.Infrastructure.Features.DownloadClient;
public interface IDownloadServiceFactory
{
IDownloadService GetDownloadService(DownloadClientConfig downloadClientConfig);
}