package eVVM.apk.ui.first.categoryTimes; import java.util.List; import eVVM.apk.mvp.IMvpView; import eVVM.apk.ui.bean.CategoryTimesBean; import eVVM.apk.ui.bean.LoginBean; /** * Created by Android Studio. * User: zbb * Date: 2019/6/1 * Describe: LoginContract */ public class CategoryTimesContract { public interface View extends IMvpView { void categoryTimesListError(String msg); void categoryTimesListSuccess(List data); } public interface Presenter { void categoryTimesList(); } }