using Telegram.Bot; using Telegram.Bot.Types; namespace JOBot.TClient.Commands; public class InfoCommand(ITelegramBotClient bot) : ITelegramCommand { public async Task ExecuteAsync(Update update, CancellationToken ct) { ArgumentNullException.ThrowIfNull(update.Message?.From); await bot.SendMessage(update.Message.From.Id, TextResource.Info, cancellationToken: ct); } }