Files
mxaccessgw/src/MxGateway.Server/Security/Authentication/ApiKeyCreateRequest.cs
T
2026-04-26 16:56:12 -04:00

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);