15 lines
492 B
C#
15 lines
492 B
C#
namespace Connected.Security.Authorization
|
|
{
|
|
public sealed class AuthorizationResult : IAuthorizationResult
|
|
{
|
|
public bool Success { get; init; }
|
|
|
|
public AuthorizationResultReason Reason { get; init; }
|
|
|
|
public int PermissionCount { get; init; }
|
|
|
|
public static AuthorizationResult OK() => new() { Success = true, Reason = AuthorizationResultReason.OK };
|
|
public static AuthorizationResult Fail(AuthorizationResultReason reason) => new() { Success = false, Reason = reason };
|
|
}
|
|
}
|