25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
313B

  1. namespace Campaign_Tracker.Server.Authentication;
  2. public enum AuthenticationAuditEventType
  3. {
  4. Success,
  5. Failure,
  6. }
  7. public sealed record AuthenticationAuditEvent(
  8. AuthenticationAuditEventType EventType,
  9. string Subject,
  10. string Reason,
  11. string TraceIdentifier,
  12. DateTimeOffset RecordedAt);

Powered by TurnKey Linux.