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