ilk commit

This commit is contained in:
hOLOlu
2026-05-04 01:19:04 +03:00
commit 5f33557f2d
2072 changed files with 75437 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using DownloadManager.Core.Events;
using DownloadManager.Core.Models;
using System;
using System.Threading;
using System.Threading.Tasks;
namespace DownloadManager.Core.Engine;
public interface IDownloader
{
Task DownloadAsync(DownloadItem item, IProgress<DownloadProgressEvent>? progress, CancellationToken ct);
}