Cleanup ProtectionProgress

This commit is contained in:
Matt Nadareski
2022-12-08 22:37:57 -08:00
parent dcccd6e313
commit 912b49ecc4

View File

@@ -1,9 +1,23 @@
namespace BurnOutSharp
{
public class ProtectionProgress
/// <summary>
/// Struct representing protection scanning progress
/// </summary>
public struct ProtectionProgress
{
/// <summary>
/// Filename to report progress for
/// </summary>
public string Filename { get; private set; }
/// <summary>
/// Value between 0 and 1 representign the percentage completed
/// </summary>
public float Percentage { get; private set; }
/// <summary>
/// Protection information to report
/// </summary>
public string Protection { get; private set; }
public ProtectionProgress(string filename, float percentage, string protection)