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