Files
mxaccessgw/src/MxGateway.Server/Security/Authentication/ApiKeyRecord.cs
T
2026-04-26 16:29:38 -04:00

12 lines
305 B
C#

namespace MxGateway.Server.Security.Authentication;
public sealed record ApiKeyRecord(
string KeyId,
string KeyPrefix,
byte[] SecretHash,
string DisplayName,
IReadOnlySet<string> Scopes,
DateTimeOffset CreatedUtc,
DateTimeOffset? LastUsedUtc,
DateTimeOffset? RevokedUtc);