mirror of
https://github.com/bitwarden/server.git
synced 2024-12-03 14:03:33 +01:00
15 lines
315 B
C#
15 lines
315 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Enums;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
|
|
namespace Bit.Sso.Utilities
|
|
{
|
|
public interface IDynamicAuthenticationScheme
|
|
{
|
|
AuthenticationSchemeOptions Options { get; set; }
|
|
SsoType SsoType { get; set; }
|
|
|
|
Task Validate();
|
|
}
|
|
}
|