package com.codeest.geeknews.base.contract.zhihu; import com.codeest.geeknews.base.BasePresenter; import com.codeest.geeknews.base.BaseView; import com.codeest.geeknews.model.bean.SectionListBean; /** * Created by codeest on 16/8/12. */ public interface SectionContract { interface View extends BaseView { void showContent(SectionListBean sectionListBean); } interface Presenter extends BasePresenter<View> { void getSectionData(); } }