public TelegramButton(NotificationButton notificationButton)
        {
            Link = notificationButton.Link;

            /* Telegram doesn't support links to localhost so replace domain */
            Link = Link.Replace("localhost", "replace.to.localhost");

            Link = Link.AddQueryParameter("utm_source", "telegram");

            Text = notificationButton.Text;
        }