mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-06 05:35:20 +00:00
17 lines
471 B
C#
17 lines
471 B
C#
namespace BurnOutSharp
|
|
{
|
|
public class ProtectionProgress
|
|
{
|
|
public string Filename { get; private set; }
|
|
public float Percentage { get; private set; }
|
|
public string Protection { get; private set; }
|
|
|
|
public ProtectionProgress(string filename, float percentage, string protection)
|
|
{
|
|
this.Filename = filename;
|
|
this.Percentage = percentage;
|
|
this.Protection = protection;
|
|
}
|
|
}
|
|
}
|