2025-10-20 10:16:44 +08:00
|
|
|
package com.xscm.moduleutil.event;
|
|
|
|
|
|
|
|
|
|
|
2025-10-29 11:03:42 +08:00
|
|
|
import com.xscm.moduleutil.BaseEvent;
|
2025-10-20 10:16:44 +08:00
|
|
|
import com.xscm.moduleutil.bean.RoonGiftModel;
|
|
|
|
|
|
2025-10-29 11:03:42 +08:00
|
|
|
public class GiftUserRefreshEvent extends BaseEvent {
|
2025-10-20 10:16:44 +08:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|