Old .NET really doesn't like readonly

This commit is contained in:
Matt Nadareski
2024-10-03 12:55:38 -04:00
parent 150b9a0d67
commit aa4c72fb90

View File

@@ -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)
{