11 lines
298 B
C#
11 lines
298 B
C#
public class AuthAuditEvent
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public AuthAuditEventType EventType { get; set; }
|
|
public DateTimeOffset OccurredAt { get; set; }
|
|
public string? MetadataJson { get; set; }
|
|
|
|
public User User { get; set; } = null!;
|
|
}
|