10 lines
232 B
C#
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);
|