Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Security;
/// <summary>
/// Represents an type of reCAPTCHA
/// </summary>
public enum CaptchaType
{
/// <summary>
/// Use reCAPTCHA v2 check box
/// </summary>
CheckBoxReCaptchaV2 = 10,
/// <summary>
/// Use reCAPTCHA v3
/// </summary>
ReCaptchaV3 = 20,
}