diff --git a/BinaryObjectScanner/ProtectionProgress.cs b/BinaryObjectScanner/ProtectionProgress.cs index 594aab0f..41546e11 100644 --- a/BinaryObjectScanner/ProtectionProgress.cs +++ b/BinaryObjectScanner/ProtectionProgress.cs @@ -12,29 +12,17 @@ /// /// Filename to report progress for /// -#if NETFRAMEWORK || NETCOREAPP3_1 public string? Filename { get; private set; } -#else - public string? Filename { get; init; } -#endif /// /// Value between 0 and 1 representign the percentage completed /// -#if NETFRAMEWORK || NETCOREAPP3_1 public float Percentage { get; private set; } -#else - public float Percentage { get; init; } -#endif /// /// Protection information to report /// -#if NETFRAMEWORK || NETCOREAPP3_1 public string? Protection { get; private set; } -#else - public string? Protection { get; init; } -#endif public ProtectionProgress(string? filename, float percentage, string? protection) {