fix: a callback on playlist editor dialog closing tells me when to refresh the playlist view

This commit is contained in:
antonio 2023-08-25 12:22:43 +02:00
parent 56b48dbd4d
commit 3fc9b35fe4
4 changed files with 23 additions and 4 deletions

View file

@ -0,0 +1,8 @@
package com.cappielloantonio.tempo.interfaces;
import androidx.annotation.Keep;
@Keep
public interface PlaylistCallback {
default void onDismiss() {}
}