namespace Beam.Abstractions; public interface IUnitDownloader { public int LinksPerDownload { get; } public Task<(bool, T?)> TryDownload(IOrdered[] link, CancellationToken ct, int maximumRetryCount = 7, IProgress? tryProgress = null); }