blob: 344e11ef772128e02446d4c25a50c6501b21045c [file] [log] [blame]
package org.apache.fineract.ui.base;
/**
* Base interface that any class that wants to act as a View in the MVP (Model View Presenter)
* pattern must implement. Generally this interface will be extended by a more specific interface
* that then usually will be implemented by an Activity or Fragment.
*/
public interface MvpView {
}