型修正

This commit is contained in:
rca 2024-06-29 11:44:32 +09:00
parent b90e0e1545
commit 4eb2bd32fd

View File

@ -1,12 +1,14 @@
package one.nem.kidshift.model.callback;
import java.util.List;
import one.nem.kidshift.model.tasks.TaskItemModel;
public interface TaskItemModelCallback {
void onUnchanged();
void onUpdated(TaskItemModel taskItem);
void onUpdated(List<TaskItemModel> taskItem);
void onFailed(String message);
}