mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 16:13:12 +08:00
13 lines
323 B
C#
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>();
|
|
}
|
|
}
|