17 lines
396 B
Plaintext
Executable File
17 lines
396 B
Plaintext
Executable File
package com.example.administrator.ximengjianyu.base;
|
||
|
||
/**
|
||
* Created by xukai on 2017/3/10.
|
||
* 通过该事件,来判断是该设置登录界面哪个显示影藏
|
||
*/
|
||
public class LoginViewEvent {
|
||
/**
|
||
* 该值为true,显示等待界面,引藏登录
|
||
*/
|
||
public boolean showWait;
|
||
/**
|
||
* 关闭主页面
|
||
*/
|
||
public boolean closeHomeActivity;
|
||
}
|