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

10 lines
232 B
C#

namespace MxGateway.Server.Security.Authentication;
public sealed record ApiKeyAuditRecord(
long AuditId,
string? KeyId,
string EventType,
string? RemoteAddress,
DateTimeOffset CreatedUtc,
string? Details);