From 8e9dd5b0f97c51a8d62950b12d5aa05947704b38 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 23 Apr 2024 10:27:33 +0200 Subject: [PATCH] =?UTF-8?q?Hinzuf=C3=BCgen=20neuer=20Flags=20zum=20Flag-En?= =?UTF-8?q?um?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Application/Flag.cs | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/DigitalData.Core.Application/Flag.cs b/DigitalData.Core.Application/Flag.cs index e3facc6..9649926 100644 --- a/DigitalData.Core.Application/Flag.cs +++ b/DigitalData.Core.Application/Flag.cs @@ -22,6 +22,23 @@ /// Indicates that either a security breach, a data integrity issue, or both have been detected during the service operation. /// This flag is used when it is not sure whether the problem is security or data integrity. In this case, data integrity should be checked first. /// - SecurityBreachOrDataIntegrity + SecurityBreachOrDataIntegrity, + + /// + /// Indicates a possible security breach during the service operation. + /// + PossibleSecurityBreach, + + /// + /// Indicates a possible issue with data integrity during the service operation. + /// This flag is used when there is a suspicion of data alteration, corruption, or unreliability. + /// + PossibleDataIntegrityIssue, + + /// + /// Indicates that either a possible security breach, a possible data integrity issue, or both have been detected during the service operation. + /// This flag is used when it is uncertain whether the issue is related to security, data integrity, or both. + /// + PossibleSecurityBreachOrDataIntegrity } } \ No newline at end of file