Automated formatting: BOM removal, using sort order, final newlines, whitespace normalization across all projects. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
127 B
C#
9 lines
127 B
C#
namespace Svrnty.CQRS.Abstractions.Security;
|
|
|
|
public enum AuthorizationResult
|
|
{
|
|
Unauthorized,
|
|
Forbidden,
|
|
Allowed
|
|
}
|