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 RemoveGroupPacket extends BasePackets { private List userIds; private Long groupId; @Override public Byte getCommand() { return Command.REMOVE_GROUP; } }