11 lines
242 B
C#
11 lines
242 B
C#
using Telegram.Bot;
|
|
using Telegram.Bot.Types;
|
|
|
|
namespace TelegramBot.Commands;
|
|
|
|
public interface IMessage
|
|
{
|
|
public Task InvokeFromMessage(ITelegramBotClient botClient,
|
|
Update update,
|
|
CancellationToken cancellationToken);
|
|
} |