mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
11 lines
268 B
C#
11 lines
268 B
C#
namespace LanDesktopPLONDS.Installer.Models;
|
|
|
|
public sealed record InstallerDeployProgress(
|
|
string Stage,
|
|
string? TargetVersion,
|
|
double DownloadProgress,
|
|
double InstallProgress,
|
|
string? CurrentFile,
|
|
long BytesDownloaded,
|
|
long? TotalBytes);
|