10 lines
247 B
C#
10 lines
247 B
C#
namespace MxGateway.Server.Security.Authentication;
|
|
|
|
public sealed record ApiKeyCreateRequest(
|
|
string KeyId,
|
|
string KeyPrefix,
|
|
byte[] SecretHash,
|
|
string DisplayName,
|
|
IReadOnlySet<string> Scopes,
|
|
DateTimeOffset CreatedUtc);
|