void.cat/VoidCat/Services/Abstractions/ICaptchaVerifier.cs

6 lines
125 B
C#

namespace VoidCat.Services.Abstractions;
public interface ICaptchaVerifier
{
ValueTask<bool> Verify(string? token);
}