mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-27 16:50:46 +00:00
Old .NET really doesn't like readonly
This commit is contained in:
@@ -12,17 +12,17 @@
|
||||
/// <summary>
|
||||
/// Filename to report progress for
|
||||
/// </summary>
|
||||
public readonly string? Filename { get; }
|
||||
public string? Filename { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Value between 0 and 1 representign the percentage completed
|
||||
/// </summary>
|
||||
public readonly float Percentage { get; }
|
||||
public float Percentage { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Protection information to report
|
||||
/// </summary>
|
||||
public readonly string? Protection { get; }
|
||||
public string? Protection { get; }
|
||||
|
||||
public ProtectionProgress(string? filename, float percentage, string? protection)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user