mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 20:58:07 +03:00
9 lines
238 B
C#
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; }
|
|
}
|