You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 line
293B

  1. namespace Campaign_Tracker.Server.Authentication;
  2. public interface IAuthenticationAuditStore
  3. {
  4. IReadOnlyCollection<AuthenticationAuditEvent> Events { get; }
  5. void RecordSuccess(string subject, string traceIdentifier);
  6. void RecordFailure(string reason, string traceIdentifier);
  7. }

Powered by TurnKey Linux.