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