Skip to content

Commit 32a802d

Browse files
committed
♻️ RoomCreatedPayload Integer -> int로 통일
1 parent 2d9678d commit 32a802d

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed
Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
package io.f1.backend.domain.game.sse.dto;
22

33
public record RoomCreatedPayload(
4-
Long roomId,
5-
String roomName,
6-
Integer maxUserCount,
7-
int currentUserCount,
8-
boolean locked,
9-
String roomState,
10-
String quizTitle,
11-
String description,
12-
String creator,
13-
Integer numberOfQuestion,
14-
String thumbnailUrl) {}
4+
Long roomId,
5+
String roomName,
6+
int maxUserCount,
7+
int currentUserCount,
8+
boolean locked,
9+
String roomState,
10+
String quizTitle,
11+
String description,
12+
String creator,
13+
int numberOfQuestion,
14+
String thumbnailUrl
15+
) {
16+
17+
}

0 commit comments

Comments
 (0)