mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 12:14:46 -04:00
14 lines
271 B
C#
14 lines
271 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
|
|
namespace Kyoo.Authentication
|
|
{
|
|
public class AuthorizationValidator : IAuthorizationRequirement
|
|
{
|
|
public string Permission { get; }
|
|
|
|
public AuthorizationValidator(string permission)
|
|
{
|
|
Permission = permission;
|
|
}
|
|
}
|
|
} |