diff --git a/BinaryObjectScanner/ProtectionProgress.cs b/BinaryObjectScanner/ProtectionProgress.cs index bee13d6e..27ea7ea6 100644 --- a/BinaryObjectScanner/ProtectionProgress.cs +++ b/BinaryObjectScanner/ProtectionProgress.cs @@ -12,17 +12,17 @@ /// /// Filename to report progress for /// - public string? Filename { get; private set; } + public readonly string? Filename { get; } /// /// Value between 0 and 1 representign the percentage completed /// - public float Percentage { get; private set; } + public readonly float Percentage { get; } /// /// Protection information to report /// - public string? Protection { get; private set; } + public readonly string? Protection { get; } public ProtectionProgress(string? filename, float percentage, string? protection) {