You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package com.yzx.webebook.presenter;
-
- import com.yzx.webebook.presenter.base.BasePresenter;
- import com.yzx.webebook.widget.page.TxtChapter;
-
- import org.jetbrains.annotations.NotNull;
-
- import java.util.List;
-
- public class ReadPresenter extends BasePresenter<ReadView> {
-
- public ReadPresenter(@NotNull ReadView view) {
- super(view);
- }
-
-
- public void loadCategory(String bookId){
-
- }
-
- public void loadChapter(String bookId, List<TxtChapter> bookChapterList){
-
- }
- }
|