Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CaptchaType.cs

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,
}