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 }