8 lines
188 B
C#
8 lines
188 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public sealed record ApiKeyIdentity(
|
|
string KeyId,
|
|
string KeyPrefix,
|
|
string DisplayName,
|
|
IReadOnlySet<string> Scopes);
|