1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-11 04:43:44 -05:00
Files
bitwarden/src/Core/Models/TwoFactorProvider.cs
2017-06-19 22:08:10 -04:00

11 lines
258 B
C#

using System.Collections.Generic;
namespace Bit.Core.Models
{
public class TwoFactorProvider
{
public bool Enabled { get; set; }
public Dictionary<string, string> MetaData { get; set; } = new Dictionary<string, string>();
}
}