1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00
bitwarden/src/Core/Services/ICaptchaValidationService.cs
2021-06-16 12:47:41 -04:00

11 lines
258 B
C#

using System.Threading.Tasks;
namespace Bit.Core.Services
{
public interface ICaptchaValidationService
{
bool ServiceEnabled { get; }
Task<bool> ValidateCaptchaResponseAsync(string captchResponse, string clientIpAddress);
}
}