Esempio n. 1
0
        private void OnClickDropStash()
        {
            IGitStashResults results = wrapper.DropStash(new GitStashOptions(), Stash.Index);

            if (!string.IsNullOrEmpty(results.Message))
            {
                page.ShowNotification(results.Message, NotificationType.Information);
            }
            OnAfterDeleted();
        }