diff --git a/TurnstileTagHelper.cs b/TurnstileTagHelper.cs
index 1216f85..da35a76 100644
--- a/TurnstileTagHelper.cs
+++ b/TurnstileTagHelper.cs
@@ -18,7 +18,7 @@ public class TurnstileTagHelper : TagHelper
///
/// Whether turnstile should be activated.
///
- public bool? AppTurnstile { get; set; }
+ public bool? CfTurnstile { get; set; }
///
/// Gets the of the executing view.
@@ -30,7 +30,7 @@ public class TurnstileTagHelper : TagHelper
public override void Process(TagHelperContext context, TagHelperOutput output)
{
- if (AppTurnstile ?? false)
+ if (CfTurnstile ?? false)
{
IHtmlContent content = _turnstile.GenerateTurnstileFormHtml(ViewContext!);
if (content != null)