mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 00:23:24 +08:00
13 lines
287 B
C#
13 lines
287 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, object> MetaData { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|