mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
15 lines
359 B
C#
15 lines
359 B
C#
using System;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
namespace BTCPayApp.CommonServer
|
|
{
|
|
public class PolicyRequirement : IAuthorizationRequirement
|
|
{
|
|
public PolicyRequirement(string policy)
|
|
{
|
|
ArgumentNullException.ThrowIfNull(policy);
|
|
Policy = policy;
|
|
}
|
|
public string Policy { get; }
|
|
}
|
|
}
|