Files
LanMountainDesktop/LanMountainDesktop.Launcher/Update/IUpdateProgressReporter.cs
2026-05-28 10:43:30 +08:00

10 lines
253 B
C#

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