mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-13 12:45:22 +01:00
12 lines
305 B
C#
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);
|
|
}
|
|
}
|