Files
BinaryObjectScanner/BurnOutSharp/ProtectionProgress.cs

17 lines
471 B
C#
Raw Normal View History

2018-07-18 10:38:41 -07:00
namespace BurnOutSharp
{
2020-11-12 22:47:33 -08:00
public class ProtectionProgress
2018-07-18 10:38:41 -07:00
{
public string Filename { get; private set; }
public float Percentage { get; private set; }
public string Protection { get; private set; }
2020-11-12 22:47:33 -08:00
public ProtectionProgress(string filename, float percentage, string protection)
2018-07-18 10:38:41 -07:00
{
this.Filename = filename;
this.Percentage = percentage;
this.Protection = protection;
}
}
}