so-un-bot/Bot/ModuleLoader/IModule.cs

12 lines
305 B
C#

using Telegram.Bot;
using Telegram.Bot.Types;
namespace SoUnBot.ModuleLoader
{
public interface IModule
{
public string Cmd();
public string GetName();
public void ProcessUpdate(ITelegramBotClient botClient, Update update, CancellationToken cancellationToken);
}
}