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

9 lines
194 B
C#
Raw Normal View History

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