From aa4c72fb90bab398190392e0dc2000c0812bf5db Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 3 Oct 2024 12:55:38 -0400 Subject: [PATCH] Old .NET really doesn't like readonly --- BinaryObjectScanner/ProtectionProgress.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BinaryObjectScanner/ProtectionProgress.cs b/BinaryObjectScanner/ProtectionProgress.cs index 27ea7ea6..b38f60ca 100644 --- a/BinaryObjectScanner/ProtectionProgress.cs +++ b/BinaryObjectScanner/ProtectionProgress.cs @@ -12,17 +12,17 @@ /// /// Filename to report progress for /// - public readonly string? Filename { get; } + public string? Filename { get; } /// /// Value between 0 and 1 representign the percentage completed /// - public readonly float Percentage { get; } + public float Percentage { get; } /// /// Protection information to report /// - public readonly string? Protection { get; } + public string? Protection { get; } public ProtectionProgress(string? filename, float percentage, string? protection) {