Files
server/src/Core/Models/ITwoFactorProvidersUser.cs
2022-08-29 16:06:55 -04:00

12 lines
266 B
C#

using Bit.Core.Enums;
namespace Bit.Core.Models;
public interface ITwoFactorProvidersUser
{
string TwoFactorProviders { get; }
Dictionary<TwoFactorProviderType, TwoFactorProvider> GetTwoFactorProviders();
Guid? GetUserId();
bool GetPremium();
}