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