Files
LanMountainDesktop/LanMountainDesktop.Launcher/Update/NullUpdateProgressReporter.cs

10 lines
307 B
C#
Raw Normal View History

using LanMountainDesktop.Shared.Contracts.Update;
namespace LanMountainDesktop.Launcher.Update;
internal sealed class NullUpdateProgressReporter : IUpdateProgressReporter
{
public void ReportProgress(InstallProgressReport report) { }
public void ReportComplete(InstallCompleteReport report) { }
}