namespace Dpz.Core.Auth.Models.UserCenter;

public class SecurityModel
{
    public bool HasTwoFactor { get; set; }

    public bool HasPasskey { get; set; }

    public bool IsFullyBound { get; set; }

    public bool HasRequiredSecurity { get; set; }

    public bool RequiresSecurityOnboarding { get; set; }

    public int PasskeyCount { get; set; }

    public string[] Recommendations { get; set; } = [];
}
评论加载中...