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.
13 lines
295 B
13 lines
295 B
1 year ago
|
using StabilityMatrix.Core.Models.Progress;
|
||
1 year ago
|
using StabilityMatrix.Core.Models.Update;
|
||
1 year ago
|
|
||
1 year ago
|
namespace StabilityMatrix.Core.Updater;
|
||
1 year ago
|
|
||
|
public interface IUpdateHelper
|
||
|
{
|
||
1 year ago
|
Task StartCheckingForUpdates();
|
||
|
|
||
|
Task DownloadUpdate(UpdateInfo updateInfo,
|
||
|
IProgress<ProgressReport> progress);
|
||
|
}
|