- package eVVM.apk.ui.event;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/18
- * Describe: informationEvent eventbus事件用于修改个人信息成功后对我的页面姓名进行刷新
- */
- public class informationEvent {
- public String name;
- public informationEvent(String name) {
- this.name = name;
- }
- }
|