您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
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.