public CommandResult ShowInformation(string title = "Please Note")
        {
            if (Status == CommandStatuses.Information)
            {
                PackageBase.DisplayInformation(title, Message);
            }

            return(this);
        }