using Telegram.Bot; using Telegram.Bot.Types; namespace Kruzya.TelegramBot.CustomChatAddOns.Data.WebhookCommand { public interface IWebhookCommand { public Task Execute(ITelegramBotClient botClient, Message message); } }