8 lines
133 B
C#
8 lines
133 B
C#
|
namespace OpenHarbor.CQRS.Abstractions.Security;
|
|||
|
|
|||
|
public enum AuthorizationResult
|
|||
|
{
|
|||
|
Unauthorized,
|
|||
|
Forbidden,
|
|||
|
Allowed
|
|||
|
}
|