Refaktorisierung des Flag-Enums: Flag auf nullable gesetzt, HasFlag-Methode für Nullable-Prüfung aktualisiert, Null-Flag entfernt, SecurityBreachOrDataIntegrity für überlappende Probleme hinzugefügt.

This commit is contained in:
Developer 02
2024-04-22 14:25:09 +02:00
parent 40c3b6fdc1
commit bb5837047a
8 changed files with 17 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ namespace DigitalData.Core.Contracts.Application
/// This flag helps in categorizing the state of the operation more granularly.
/// </summary>
[JsonIgnore]
Enum Flag { get; set; }
Enum? Flag { get; set; }
/// <summary>
/// Checks if the current service message's flag matches the specified flag.