2636f83eb5efe9e83cb38f869431a71638ae4c1e.svn-base 566 B

123456789101112131415161718192021222324252627
  1. package eVVM.apk.ui.first.categoryTimes;
  2. import java.util.List;
  3. import eVVM.apk.mvp.IMvpView;
  4. import eVVM.apk.ui.bean.CategoryTimesBean;
  5. import eVVM.apk.ui.bean.LoginBean;
  6. /**
  7. * Created by Android Studio.
  8. * User: zbb
  9. * Date: 2019/6/1
  10. * Describe: LoginContract
  11. */
  12. public class CategoryTimesContract {
  13. public interface View extends IMvpView {
  14. void categoryTimesListError(String msg);
  15. void categoryTimesListSuccess(List<CategoryTimesBean.DataBean> data);
  16. }
  17. public interface Presenter {
  18. void categoryTimesList();
  19. }
  20. }