Files
BinaryObjectScanner/BurnOutSharp/FileProtection.cs

17 lines
463 B
C#
Raw Normal View History

2018-07-18 10:38:41 -07:00
namespace BurnOutSharp
{
public class FileProtection
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; }
public FileProtection(string filename, float percentage, string protection)
2018-07-18 10:38:41 -07:00
{
this.Filename = filename;
this.Percentage = percentage;
this.Protection = protection;
}
}
}