mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
11 lines
245 B
C#
11 lines
245 B
C#
|
|
using Telegram.Bot;
|
||
|
|
using Telegram.Bot.Types;
|
||
|
|
|
||
|
|
namespace Kruzya.TelegramBot.CustomChatAddOns.Data.WebhookCommand
|
||
|
|
{
|
||
|
|
public interface IWebhookCommand
|
||
|
|
{
|
||
|
|
public Task Execute(ITelegramBotClient botClient, Message message);
|
||
|
|
}
|
||
|
|
}
|