mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 15:44:25 +08:00
10 lines
266 B
C#
10 lines
266 B
C#
namespace LanDesktopPLONDS.Installer.Models;
|
|
|
|
public sealed record InstallerWorkflowState(
|
|
InstallerStepId CurrentStep,
|
|
InstallerStepId MaxUnlockedStep,
|
|
string InstallPath,
|
|
bool PrivacyConfirmed,
|
|
string? TargetVersion,
|
|
string? ErrorMessage);
|