Version 1.2.0

This commit is contained in:
Junior 2024-01-04 22:59:30 -03:00
parent 9b3a0e00a2
commit e74d93fab9
83 changed files with 110087 additions and 47507 deletions

View file

@ -0,0 +1,26 @@
namespace RHLauncher.RHLauncher.Helper
{
public class ProgressReport
{
public string? Label { get; set; }
public string? Button { get; set; }
public int PercentComplete { get; set; }
public string? FileName { get; set; }
public string? ErrorMessage { get; set; }
public long Current { get; set; }
public long Total { get; set; }
public double TotalSpeed { get; set; }
public long TimeLeft { get; set; }
public int NumFiles { get; set; }
public int TotalNumFiles { get; set; }
public bool Panel { get; set; }
public bool CancellButton { get; set; }
public bool ShowFileNameLabel { get; set; }
public bool ShowSpeedLabel { get; set; }
public bool ShowTimeLabel { get; set; }
public bool ShowFileSizeLabel { get; set; }
public bool ShowFileCountLabel { get; set; }
public bool IsCheckingFilelist { get; set; }
public CancellationToken CancellationToken { get; set; }
}
}