1c81288895
refactor the name of the organisation
10 lines
278 B
C#
10 lines
278 B
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenHarbor.CQRS.Abstractions.Security;
|
|
|
|
public interface IQueryAuthorizationService
|
|
{
|
|
Task<AuthorizationResult> IsAllowedAsync(Type queryType, CancellationToken cancellationToken = default);
|
|
} |