package com.fly.tour.common.mvp; /** * Description:
* Author: mxdl
* Date: 2018/12/28
* Version: V1.0.0
* Update:
*/ public interface BaseContract { interface Presenter{ void attach(V view); void dettach(); } interface View{ void showLoading(); void hideLoading(); void showErrNetWork(); } }