1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-04 14:13:28 +01:00
bitwarden-server/bitwarden_license/src/Sso/Utilities/IDynamicAuthenticationScheme.cs

15 lines
315 B
C#
Raw Normal View History

2020-09-04 19:56:08 +02:00
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();
}
}