dotnet-cqrs/OpenHarbor.CQRS.Abstractions/Security/AuthorizationResult.cs
Mathias Beaulieu-Duncan 1c81288895 update namespaces
refactor the name of the organisation
2023-11-04 15:24:56 -04:00

8 lines
133 B
C#

namespace OpenHarbor.CQRS.Abstractions.Security;
public enum AuthorizationResult
{
Unauthorized,
Forbidden,
Allowed
}