using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HuanMeng.DotNetCore.TextCensor
{
///
/// 文本审核接口
///
public interface ITextCensor
{
///
/// 文本审核
///
///
///
bool TextCensor(string text);
///
/// 文本审核
///
///
///
Task TextCensorAsync(string text);
}
}