Rename this to be more accurate

This commit is contained in:
Matt Nadareski
2020-11-12 22:47:33 -08:00
parent b841c7aa94
commit f9a990b27b
3 changed files with 11 additions and 11 deletions

View File

@@ -0,0 +1,16 @@
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;
}
}
}