using MxGateway.Server.Security.Authentication; namespace MxGateway.Server.Security.Authorization; public interface IGatewayRequestIdentityAccessor { ApiKeyIdentity? Current { get; } IDisposable Push(ApiKeyIdentity identity); }