now with animations lol
This commit is contained in:
parent
7a7cefe7b5
commit
243224a720
6 changed files with 192 additions and 43 deletions
19
MetaforceInstaller.Core/Models/ProgressInfo.cs
Normal file
19
MetaforceInstaller.Core/Models/ProgressInfo.cs
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue