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