now with animations lol

This commit is contained in:
Вячеслав 2025-09-15 00:38:30 +05:00
parent 7a7cefe7b5
commit 243224a720
6 changed files with 192 additions and 43 deletions

View file

@ -0,0 +1,19 @@
namespace MetaforceInstaller.Core.Models;
public class ProgressInfo
{
public int PercentageComplete { get; set; }
public long BytesTransferred { get; set; }
public long TotalBytes { get; set; }
public string? Message { get; set; }
public string? CurrentFile { get; set; }
public ProgressType Type { get; set; }
}
public enum ProgressType
{
Installation,
FileCopy,
Extraction,
General
}