mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-07-08 18:06:34 +00:00
Cleanup ProtectionProgress
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user