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

6 lines
125 B
C#
Raw Normal View History

2022-03-11 15:59:08 +00:00
namespace VoidCat.Services.Abstractions;
public interface ICaptchaVerifier
{
ValueTask<bool> Verify(string? token);
}