using System.Collections.Generic; using Bit.Core.Enums; using Bit.Core.Models.Domain; using Newtonsoft.Json; namespace Bit.Core.Models.Response { public class IdentityTwoFactorResponse { public List TwoFactorProviders { get; set; } public Dictionary> TwoFactorProviders2 { get; set; } public MasterPasswordPolicyOptions MasterPasswordPolicy { get; set; } [JsonProperty("CaptchaBypassToken")] public string CaptchaToken { get; set; } } }