Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 řádky
397B

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

Powered by TurnKey Linux.