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

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();
}
}