update auth for refresh tokens and token invalidation

This commit is contained in:
voltsrage
2026-06-26 04:32:01 +08:00
parent 9777a335c5
commit abb33de5c1
20 changed files with 1183 additions and 12 deletions
@@ -0,0 +1,10 @@
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!;
}