Files
server/src/Core/Models/TwoFactorProvider.cs
2017-06-07 14:14:34 -04:00

13 lines
323 B
C#

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