using System;
using System.Threading.Tasks;
namespace Admin.Tools.Captcha
{
///
/// 验证接口
///
public interface ICaptcha
{
///
/// 获得验证数据
///
///
Task GetAsync();
///
/// 检查验证数据
///
///
///
Task CheckAsync(CaptchaInput input, bool deleteCache = false);
}
}