10 lines
251 B
C#
10 lines
251 B
C#
using Api.Services.Contracts.Models;
|
|
|
|
namespace Api.Services.Contracts
|
|
{
|
|
public interface ICaptchaVerifier
|
|
{
|
|
Task<CaptchaVerdictModel> VerifyAsync(string token, string? userIp, string? expectedAction, CancellationToken ct);
|
|
}
|
|
}
|