public async Task ShowQuestionWithOptions()
        {
            var answer = await _userNotificationService.ShowOptions("1 + 1 equals...", new List <Option>
            {
                new Option("1", 1),
                new Option("2", 2)
            });

            int result = (int)answer;

            if (result == 2)
            {
                UserChoice = "Correct";
            }
            else
            {
                UserChoice = "No, try again. 1 + 1 does not equal " + result;
            }
        }