实时通讯
This commit is contained in:
21
src/main/java/com/realtime/packets/InventGroupPacket.java
Normal file
21
src/main/java/com/realtime/packets/InventGroupPacket.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package com.realtime.packets;
|
||||
|
||||
|
||||
import com.realtime.packets.basePackets.BasePackets;
|
||||
import com.realtime.packets.command.Command;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class InventGroupPacket extends BasePackets {
|
||||
private List<String> userIds;
|
||||
private Long groupId;
|
||||
|
||||
@Override
|
||||
public Byte getCommand() {
|
||||
return Command.INVENT_GROUP;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user