package com.test.mvp.mvpdemo.mvp.v6;

import com.test.mvp.mvpdemo.mvp.v6.basemvp.IBasePresenter;
import com.test.mvp.mvpdemo.mvp.v6.basemvp.IBaseView;

import okhttp3.Callback;

public interface SecondContract {
interface ISecondModel {
void requestBaidu(Callback callback);
}

interface ISecondView extends IBaseView {
void showDialog();

void succes(String content);
}

interface ISecondPresenter extends IBasePresenter {
void handlerData();
}
}
--------------------- 

相关文章:

  • 2022-01-14
  • 2021-11-11
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2021-08-06
  • 2021-09-12
  • 2021-08-28
猜你喜欢
  • 2022-12-23
  • 2021-07-07
  • 2022-01-23
  • 2021-11-09
  • 2021-12-05
  • 2021-07-07
相关资源
相似解决方案