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