Skip to content

Commit

Permalink
Code organization.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matasx committed Dec 7, 2024
1 parent 43765e6 commit f977f62
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Modules/Authentication/Multi/MultiAuthenticationConcern.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public MultiAuthenticationConcern(IHandler content, IConcern[] delegatingConcern

#endregion

#region Helper structure

private record ResponseOrException(IResponse? Response = null, ProviderException? Exception = null)
{
Expand All @@ -70,4 +71,6 @@ private record ResponseOrException(IResponse? Response = null, ProviderException

public ResponseStatus? Status => Exception?.Status ?? Response?.Status.KnownStatus;
}

#endregion
}

0 comments on commit f977f62

Please sign in to comment.