11 lines
264 B
C#
11 lines
264 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public sealed record ApiKeyAdminCommand(
|
|
ApiKeyAdminCommandKind Kind,
|
|
bool Json,
|
|
string? SqlitePath,
|
|
string? Pepper,
|
|
string? KeyId,
|
|
string? DisplayName,
|
|
IReadOnlySet<string> Scopes);
|