blob: 9a44a8bafaeb3406aef02f8a55ddea680f6054d8 [file] [log] [blame]
package org.apache.fineract.ui.base;
/**
* Every presenter in the app must either implement this interface or extend BasePresenter
* indicating the MvpView type that wants to be attached with.
*/
public interface Presenter<V extends MvpView> {
void attachView(V mvpView);
void detachView();
}