9 lines
228 B
C#
9 lines
228 B
C#
namespace RecNet.Application.Neutrino;
|
|
|
|
public interface INeutrinoAuthorizationService
|
|
{
|
|
Task<NeutrinoAuthorizationResult> AuthorizeAsync(
|
|
AuthorizeNeutrinoCommand command,
|
|
CancellationToken ct = default);
|
|
}
|