Files

11 lines
256 B
C#
Raw Permalink Normal View History

2020-03-01 22:46:37 +04:00
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);
}
}