Files
telegram-bot/CustomChatAddOns/Data/WebhookCommand/IWebhookCommand.cs
T

11 lines
245 B
C#
Raw Normal View History

2024-05-29 01:48:45 +03:00
using Telegram.Bot;
using Telegram.Bot.Types;
namespace Kruzya.TelegramBot.CustomChatAddOns.Data.WebhookCommand
{
public interface IWebhookCommand
{
public Task Execute(ITelegramBotClient botClient, Message message);
}
}