11 lines
239 B
C#
11 lines
239 B
C#
using MxGateway.Server.Security.Authentication;
|
|
|
|
namespace MxGateway.Server.Security.Authorization;
|
|
|
|
public interface IGatewayRequestIdentityAccessor
|
|
{
|
|
ApiKeyIdentity? Current { get; }
|
|
|
|
IDisposable Push(ApiKeyIdentity identity);
|
|
}
|