2024-04-27 14:51:54 -04:00

10 lines
255 B
C#

using SPTInstaller.Models.Mirrors;
using System.Threading.Tasks;
namespace SPTInstaller.Interfaces;
public interface IMirrorDownloader
{
public PatchInfoMirror MirrorInfo { get; }
public Task<FileInfo?> Download(IProgress<double> progress);
}