package com.ubt.jimu.diy.contract; import com.ubt.jimu.base.db.diy.DiyDBModel; import com.ubt.jimu.transport.model.TransportFile; import com.ubt.jimu.transport3.model.DiyModelAction; import com.ubtech.presenter.BasePresenter; import com.ubtech.view.BaseView; import java.util.List; /* loaded from: classes.dex */ public interface UserDiyHomeContract { public interface Presenter extends BasePresenter { void getDiyModelActions(String str, int i, String str2, Integer num); void updateModel(DiyDBModel diyDBModel); } public interface View extends BaseView { void onGetServerActionListFailed(Throwable th); void onGetServerActionListSuccess(List list); void onServerDeleteActions(List list); void onStartDownload(List list); } }