Skip to content

Commit 80719a5

Browse files
committed
feat: UserResponse dto 추가
1 parent 0022c77 commit 80719a5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main/java/leets/weeth/domain/user/application/dto/response/UserResponseDto.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,14 @@ public record AdminResponse(
5555
LocalDateTime modifiedAt
5656
) {
5757
}
58+
public record UserResponse(
59+
Integer id,
60+
String name,
61+
String email,
62+
String studentId,
63+
String department,
64+
List<Integer> cardinals,
65+
Position position
66+
) {
67+
}
5868
}

0 commit comments

Comments
 (0)