package me.hegj.wandroid.mvp.contract import com.jess.arms.mvp.IModel import com.jess.arms.mvp.IView /** * ================================================ * Description: *
* Created by MVPArmsTemplate on 07/08/2019 10:20 * Contact me * Follow me * Star me * See me * 模版请保持更新 * ================================================ */ interface MainContract { //对于经常使用的关于UI的方法可以定义到IView中,如显示隐藏进度条,和显示文字消息 interface View : IView //Model层定义接口,外部只需关心Model返回的数据,无需关心内部细节,即是否使用缓存 interface Model : IModel }