using StabilityMatrix.Core.Models.Progress; namespace StabilityMatrix.Core.Services; public interface IDownloadService { Task DownloadToFileAsync(string downloadUrl, string downloadPath, IProgress? progress = null, string? httpClientName = null); Task GetImageStreamFromUrl(string url); }