27 lines
517 B
Java
27 lines
517 B
Java
package com.ubt.jimu.base.event;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class BaseEvent {
|
|
public static final int TYPE_NOTIFY_DEFAULT = 1;
|
|
public static final int TYPE_NOTIFY_PART = 3;
|
|
private String msg;
|
|
private int type;
|
|
|
|
public BaseEvent() {
|
|
this(1, "defalt");
|
|
}
|
|
|
|
public String getMsg() {
|
|
return this.msg;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public BaseEvent(int i, String str) {
|
|
this.type = i;
|
|
this.msg = str;
|
|
}
|
|
}
|