erp-platform/api/src/Erp.Platform.Domain/Identity/ICaptchaManager.cs

10 lines
194 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System.Threading.Tasks;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Identity;
2025-05-06 06:45:49 +00:00
public interface ICaptchaManager
{
Task<bool> VerifyCaptchaAsync(string CaptchaResponse, bool throwOnFailure = false);
}
2025-11-11 19:49:52 +00:00