0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 06:50:45 -05:00
installer/SPTInstaller/Interfaces/IMirrorDownloader.cs

10 lines
254 B
C#

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