mirror of
https://github.com/bitwarden/server.git
synced 2026-02-18 06:43:28 +08:00
12 lines
266 B
C#
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();
|
|
}
|