package com.fly.tour.news.contract import com.fly.tour.common.mvp.BaseView import com.fly.tour.db.entity.NewsDetail /** * Description:
* Author: mxdl
* Date: 2020/2/17
* Version: V1.0.0
* Update:
*/ /** * Description:
* Author: mxdl
* Date: 2020/2/17
* Version: V1.0.0
* Update:
*/ interface NewsDetailContract { interface Presenter { fun getNewsDetailById(id: Int) } interface View : BaseView { fun showViewDetail(newsDetail: NewsDetail?) } interface Model { fun getNewsDetailById(id: Int): NewsDetail? } }