Files

8 lines
245 B
C#

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