using Telegram.Bot; using Telegram.Bot.Types; namespace TelegramBot.Commands; public interface IMessage { public Task InvokeFromMessage(ITelegramBotClient botClient, Update update, CancellationToken cancellationToken); }