9 lines
No EOL
201 B
C#
9 lines
No EOL
201 B
C#
using AspNetCore.Authentication.ApiKey;
|
|
|
|
namespace StalwartSimpleLoginMiddleware.Models;
|
|
|
|
public interface IApiKeyAccessor
|
|
{
|
|
IApiKey ApiKey { get; set; }
|
|
KeyMetadata Metadata { get; set; }
|
|
} |