Exemplo n.º 1
0
        /// <summary>
        /// Having the necessary adaptive actions built.
        /// </summary>
        /// <returns>A list of adaptive card actions.</returns>
        private List <AdaptiveAction> BuildActions()
        {
            UserNotificationCard userNotificationCard = this;

            return(new List <AdaptiveAction>
            {
                new AdaptiveOpenUrlAction()
                {
                    Title = Strings.MyQuestionLabelText,
                    Url = userNotificationCard.GetDeeplinkToMyQuestionTab(),
                },
            });
        }