mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 21:48:12 -05:00
15 lines
344 B
C#
15 lines
344 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models
|
|
{
|
|
public interface ITwoFactorProvidersUser
|
|
{
|
|
string TwoFactorProviders { get; }
|
|
Dictionary<TwoFactorProviderType, TwoFactorProvider> GetTwoFactorProviders();
|
|
Guid? GetUserId();
|
|
bool GetPremium();
|
|
}
|
|
}
|