using System; using System.Collections.Generic; using Bit.Core.Enums; namespace Bit.Core.Models { public interface ITwoFactorProvidersUser { string TwoFactorProviders { get; } Dictionary GetTwoFactorProviders(); Guid? GetUserId(); bool GetPremium(); } }