mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
13 lines
296 B
C#
13 lines
296 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models
|
|
{
|
|
public interface ITwoFactorProvidersUser
|
|
{
|
|
string TwoFactorProviders { get; }
|
|
Dictionary<TwoFactorProviderType, TwoFactorProvider> GetTwoFactorProviders();
|
|
Guid? GetUserId();
|
|
bool GetPremium();
|
|
}
|
|
}
|