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.CommentBean; /** * Created by codeest on 16/8/18. */ public interface CommentContract { interface View extends BaseView { void showContent(CommentBean commentBean); } interface Presenter extends BasePresenter<View> { void getCommentData(int id,int commentKind); } }