Skip to content

Commit

Permalink
Merge pull request #13 from urdego/feature/#11
Browse files Browse the repository at this point in the history
Feature(#11) : RoomPlayerRes에 사용자 정보 추가
  • Loading branch information
oo-ni authored Feb 12, 2025
2 parents 7413f5f + 43c61b2 commit ca7c42b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package urdego.io.urdego_notification_service.controller.dto.response.room;

public record PlayerRes(
Long userId,
String nickname,
String activeCharacter,
int level
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public record RoomPlayersRes(
String roomId,
Status status,
List<String> currentPlayers,
List<PlayerRes> currentPlayers,
String host,
Map<String, Boolean> readyStatus,
Boolean allReady
Expand Down

0 comments on commit ca7c42b

Please sign in to comment.