This commit is contained in:
2023-05-26 11:43:28 +08:00
commit ba9a7688db
43 changed files with 2300 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package com.uiuipad.find.base;
public interface BasePresenter<V extends BaseView> {
void attachView(V view);
void detachView();
}