11 lines
162 B
C#
11 lines
162 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public enum ApiKeyAdminCommandKind
|
|
{
|
|
InitDb,
|
|
CreateKey,
|
|
ListKeys,
|
|
RevokeKey,
|
|
RotateKey
|
|
}
|