Example #1
0
        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}");
        }