8 lines
199 B
C#
8 lines
199 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public sealed record ApiKeyAdminOutput(
|
|
string Command,
|
|
string Status,
|
|
string? ApiKey,
|
|
IReadOnlyList<ApiKeyAdminListedKey> Keys);
|