8 lines
166 B
C#
8 lines
166 B
C#
using Telegram.Bot.Types;
|
|
|
|
namespace JOBot.TClient.Commands;
|
|
|
|
public interface ITelegramCommand
|
|
{
|
|
public Task ExecuteAsync(Update update, CancellationToken ct);
|
|
} |