10 lines
161 B
C#
10 lines
161 B
C#
namespace PoweredSoft.CQRS.Abstractions.Security
|
|
{
|
|
public enum AuthorizationResult
|
|
{
|
|
Unauthorized,
|
|
Forbidden,
|
|
Allowed
|
|
}
|
|
}
|