public async Task ExecuteAsync(Message message) { await _telegramBotClient.SendChatActionAsync(message.Chat.Id, ChatAction.Typing); var word = await _wordRepository.GetAnyWordAsync(); await _telegramBotClient.SendTextMessageAsync(message.Chat.Id, $"🇬🇧: {word.En}.\n🇹🇷: {word.Tr}"); }