CatchTheLettersBackend/src/main/java/com/example/catchTheLetters/entity/RoomAction.java

17 lines
414 B
Java
Raw Normal View History

2024-06-14 15:58:52 +00:00
package com.example.catchTheLetters.entity;
import com.example.catchTheLetters.enums.RoomActionType;
import lombok.Data;
import java.io.Serializable;
@Data
public class RoomAction implements Serializable {
private RoomActionType type;
// 创建或加入房间时的token
private String token;
// 房主踢出玩家时或被邀请的玩家ID
private String userID;
private long roomID;
}