mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
10 lines
255 B
C#
10 lines
255 B
C#
|
|
using LanMountainDesktop.Shared.Contracts.Update;
|
||
|
|
|
||
|
|
namespace LanMountainDesktop.Launcher.Services;
|
||
|
|
|
||
|
|
public interface IUpdateProgressReporter
|
||
|
|
{
|
||
|
|
void ReportProgress(InstallProgressReport report);
|
||
|
|
void ReportComplete(InstallCompleteReport report);
|
||
|
|
}
|