using AspNetCore.Authentication.ApiKey; namespace StalwartSimpleLoginMiddleware.Models; public interface IApiKeyAccessor { IApiKey ApiKey { get; set; } KeyMetadata Metadata { get; set; } }