コールバックインタフェース作成

This commit is contained in:
ろむねこ 2024-06-24 11:00:13 +09:00
parent 66ba912170
commit 159342d2d1
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -0,0 +1,9 @@
package one.nem.kidshift.model.callback;
import one.nem.kidshift.model.ParentModel;
public interface ParentModelCallback {
void onUnchanged();
void onUpdated(ParentModel parent);
void onFailed(String message);
}