From ceb8858dc997f844d529669438a5d531d9df8f95 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 29 Aug 2024 16:15:59 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20'NotFound'-Flag=20zur=20Flag-Enum=20hinz?= =?UTF-8?q?uf=C3=BCgen,=20um=20fehlende=20Ressourcen=20oder=20Operationen?= =?UTF-8?q?=20anzuzeigen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.DTO/Flag.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DigitalData.Core.DTO/Flag.cs b/DigitalData.Core.DTO/Flag.cs index bc2508b..cf29a75 100644 --- a/DigitalData.Core.DTO/Flag.cs +++ b/DigitalData.Core.DTO/Flag.cs @@ -39,6 +39,12 @@ /// 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 + PossibleSecurityBreachOrDataIntegrity, + + /// + /// Indicates that the requested resource or operation could not be found. + /// This flag is used when the specified item or condition does not exist or is unavailable. + /// + NotFound } } \ No newline at end of file