Files
TurnstileTag/TurnstileOptions.cs
T

12 lines
306 B
C#
Raw Normal View History

2024-03-13 16:18:05 +01:00
namespace TurnstileTag;
public class TurnstileOptions
{
public string? PublicKey { get; set; }
public string? SecretKey { get; set; }
public string ApiUrl { get; set; } = "https://challenges.cloudflare.com/turnstile/v0";
public string FormFieldName { get; set; } = "cf-turnstile-response";
}