Files
BinaryObjectScanner/BurnOutSharp/FileProtection.cs
Matt Nadareski b4c5b220ef Progress => FileProtection
This also implements a sample usage in the Test program
2018-07-22 23:46:49 -07:00

17 lines
463 B
C#

namespace BurnOutSharp
{
public class FileProtection
{
public string Filename { get; private set; }
public float Percentage { get; private set; }
public string Protection { get; private set; }
public FileProtection(string filename, float percentage, string protection)
{
this.Filename = filename;
this.Percentage = percentage;
this.Protection = protection;
}
}
}