erp-platform/api/src/Erp.Platform.Domain/Identity/ICaptchaManager.cs
2025-11-11 22:49:52 +03:00

9 lines
194 B
C#

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