mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
33 lines
798 B
C#
33 lines
798 B
C#
/* PatchResultInfo.cs
|
|
* License: NCSA Open Source License
|
|
*
|
|
* Copyright: Merijn Hendriks
|
|
* AUTHORS:
|
|
* waffle.lord
|
|
*/
|
|
|
|
using Aki.ByteBanger;
|
|
|
|
namespace Aki.Launcher.Models.Launcher
|
|
{
|
|
public class PatchResultInfo
|
|
{
|
|
public PatchResultType Status { get; }
|
|
|
|
public int NumCompleted { get; }
|
|
|
|
public int NumTotal { get; }
|
|
|
|
public bool OK => (Status == PatchResultType.Success) || (Status == PatchResultType.AlreadyPatched);
|
|
|
|
public int PercentComplete => (NumCompleted * 100) / NumTotal;
|
|
|
|
public PatchResultInfo(PatchResultType Status, int NumCompleted, int NumTotal)
|
|
{
|
|
this.Status = Status;
|
|
this.NumCompleted = NumCompleted;
|
|
this.NumTotal = NumTotal;
|
|
}
|
|
}
|
|
}
|