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

13 lines
305 B
C#
Raw Normal View History

2024-01-19 03:29:39 +01:00
using Telegram.Bot;
using Telegram.Bot.Types;
2024-01-19 19:06:53 +01:00
namespace SoUnBot.ModuleLoader
2024-01-19 03:29:39 +01:00
{
public interface IModule
{
public string Cmd();
public string GetName();
public void ProcessUpdate(ITelegramBotClient botClient, Update update, CancellationToken cancellationToken);
}
}