21 lines
435 B
Java
21 lines
435 B
Java
package com.xscm.moduleutil.event;
|
|
|
|
|
|
import com.xscm.moduleutil.BaseEvent;
|
|
import com.xscm.moduleutil.bean.RoonGiftModel;
|
|
|
|
public class GiftUserRefreshEvent extends BaseEvent {
|
|
public boolean addSelf;
|
|
|
|
public int type;
|
|
|
|
public RoonGiftModel gift;
|
|
|
|
public GiftUserRefreshEvent(boolean addSelf, int type, RoonGiftModel gift) {
|
|
this.addSelf = addSelf;
|
|
this.type = type;
|
|
this.gift = gift;
|
|
}
|
|
|
|
}
|