protected async System.Threading.Tasks.Task GridDeleteButtonClick(MouseEventArgs args, dynamic data)
        {
            try
            {
                var mimmMysqlDeleteSongResult = await MimmMysql.DeleteSong(data.id);

                if (mimmMysqlDeleteSongResult != null)
                {
                    grid0.Reload();
                }
            }
            catch (Exception mimmMysqlDeleteSongException)
            {
                NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to delete Song");
            }
        }