2025-09-24 17:19:02 +08:00
|
|
|
package com.jdf.myyuliao;
|
2025-09-22 18:56:13 +08:00
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
|
|
|
|
|
|
import com.xscm.moduleutil.activity.IPresenter;
|
|
|
|
|
import com.xscm.moduleutil.activity.IView;
|
|
|
|
|
|
|
|
|
|
public final class LaunchContacter {
|
|
|
|
|
|
|
|
|
|
public interface View extends IView<Activity> {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public interface ILoginPre extends IPresenter {
|
|
|
|
|
|
|
|
|
|
void oauthLogin(String login_token);
|
|
|
|
|
|
|
|
|
|
void address_ip(String address_ip);
|
|
|
|
|
}
|
|
|
|
|
}
|