You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
282 B
10 lines
282 B
1 year ago
|
using StabilityMatrix.Core.Models.Progress;
|
||
1 year ago
|
|
||
1 year ago
|
namespace StabilityMatrix.Core.Services;
|
||
1 year ago
|
|
||
|
public interface IDownloadService
|
||
|
{
|
||
1 year ago
|
Task DownloadToFileAsync(string downloadUrl, string downloadPath,
|
||
1 year ago
|
IProgress<ProgressReport>? progress = null, string? httpClientName = null);
|
||
1 year ago
|
}
|