TRX/tools/installer/TRX_InstallerLib/Utils/InstallProgress.cs
lahm86 e16fcda94b tools/installer: create common installer library
This creates a generic common installer WPF library for both games.
2025-03-30 12:34:54 +01:00

9 lines
238 B
C#

namespace TRX_InstallerLib.Utils;
public class InstallProgress
{
public int? CurrentValue { get; set; }
public string? Description { get; set; }
public bool Finished { get; set; }
public int? MaximumValue { get; set; }
}