10 lines
No EOL
280 B
C#
10 lines
No EOL
280 B
C#
using AspNetCore.Authentication.ApiKey;
|
|
using StalwartSimpleLoginMiddleware.Models;
|
|
|
|
namespace StalwartSimpleLoginMiddleware.Repositories;
|
|
|
|
public interface IApiKeyRepository
|
|
{
|
|
Task<IApiKey?> GetApiKeyAsync(string key);
|
|
Task<KeyMetadata> GetMetadataAsync(string key);
|
|
} |