mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
11 lines
258 B
C#
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);
|
|
}
|
|
}
|