Adding 2 factor authentication

This commit is contained in:
Shaun Walker 2022-02-28 15:58:49 -05:00
parent eb1ac3bc9b
commit 19f180331b

View File

@ -97,5 +97,11 @@ namespace Oqtane.Models
{
get => "Users\\" + UserId.ToString() + "\\";
}
/// <summary>
/// Indicates if the user requires 2 factor authentication to sign in
/// </summary>
[NotMapped]
public bool TwoFactorEnabled { get; set; }
}
}