OF-DL/Cajetan.OF-DL/Services/CajetanDownloadService.cs
2026-02-19 20:02:35 +01:00

7 lines
332 B
C#

namespace OF_DL.Services;
public class CajetanDownloadService(IAuthService authService, IConfigService configService, ICajetanDbService dbService, IFileNameService fileNameService, ICajetanApiService apiService)
: DownloadService(authService, configService, dbService, fileNameService, apiService), ICajetanDownloadService
{
}