From f977f62a07becc119422c2099b95919971ae61b3 Mon Sep 17 00:00:00 2001 From: Matasx Date: Sat, 7 Dec 2024 13:50:09 +0100 Subject: [PATCH] Code organization. --- Modules/Authentication/Multi/MultiAuthenticationConcern.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Modules/Authentication/Multi/MultiAuthenticationConcern.cs b/Modules/Authentication/Multi/MultiAuthenticationConcern.cs index 67b29d4d..a139e9ad 100644 --- a/Modules/Authentication/Multi/MultiAuthenticationConcern.cs +++ b/Modules/Authentication/Multi/MultiAuthenticationConcern.cs @@ -55,6 +55,7 @@ public MultiAuthenticationConcern(IHandler content, IConcern[] delegatingConcern #endregion + #region Helper structure private record ResponseOrException(IResponse? Response = null, ProviderException? Exception = null) { @@ -70,4 +71,6 @@ private record ResponseOrException(IResponse? Response = null, ProviderException public ResponseStatus? Status => Exception?.Status ?? Response?.Status.KnownStatus; } + + #endregion }