9 lines
194 B
C#
9 lines
194 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Kurs.Platform.Identity;
|
|||
|
|
|
|||
|
|
public interface ICaptchaManager
|
|||
|
|
{
|
|||
|
|
Task<bool> VerifyCaptchaAsync(string CaptchaResponse, bool throwOnFailure = false);
|
|||
|
|
}
|