mirror of
https://github.com/bitwarden/server.git
synced 2025-04-19 03:58:13 -05:00
11 lines
258 B
C#
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>();
|
|
}
|
|
}
|