namespace Api.Services.Contracts { public sealed record CaptchaVerdict(bool Success, string? Error, double? Score); public interface ICaptchaVerifier { Task VerifyAsync(string token, string? userIp, CancellationToken ct); } }