mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +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();
|
|||
|
}
|
|||
|
}
|