Files
LanMountainDesktop/LanMountainDesktop.Launcher/Update/IUpdateProgressReporter.cs

10 lines
253 B
C#
Raw Normal View History

using LanMountainDesktop.Shared.Contracts.Update;
namespace LanMountainDesktop.Launcher.Update;
public interface IUpdateProgressReporter
{
void ReportProgress(InstallProgressReport report);
void ReportComplete(InstallCompleteReport report);
}