🚧 CAS integration

This commit is contained in:
2020-03-01 22:46:37 +04:00
parent a7b3f97f1a
commit ed255e2506
7 changed files with 162 additions and 0 deletions
@@ -0,0 +1,11 @@
using System.Threading.Tasks;
using Telegram.Bot.Types;
namespace Kruzya.TelegramBot.CombotAntiSpam.Combot
{
public interface ICombotClient
{
public bool IsSpammer(User user);
public Task<bool> IsSpammerAsync(User user);
}
}