22 lines
540 B
Java
22 lines
540 B
Java
package com.qxcm.moduleutil.presenter;
|
|
|
|
import android.app.Activity;
|
|
|
|
import com.qxcm.moduleutil.activity.IPresenter;
|
|
import com.qxcm.moduleutil.activity.IView;
|
|
import com.qxcm.moduleutil.bean.CircleListBean;
|
|
import com.qxcm.moduleutil.bean.CommentBean;
|
|
|
|
import java.util.List;
|
|
|
|
public class CommentContacts {
|
|
public interface View extends IView<Activity> {
|
|
void getCommentList(List<CircleListBean.LikeList> likeLists);
|
|
|
|
}
|
|
public interface IIndexPre extends IPresenter {
|
|
void getCommentList(String id);
|
|
|
|
}
|
|
}
|