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; } = [];
}
AI 正在分析代码…
评论加载中...