Skip to content

Commit

Permalink
[#144] Fix: 리뷰 내용 재수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JunSang1121 committed Jun 11, 2024
1 parent 8b384ea commit 6132a28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/sajang/devracebackend/dto/UserRoomDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static class SolveRequest {
public static class SolvePageResponse {

// Problem
private ProblemDto.Response ProblemproblemDto;
private ProblemDto.Response problemResponseDto;

// Room
private List<UserDto.Response> rankUserDtoList;
Expand All @@ -48,7 +48,7 @@ public static class SolvePageResponse {
private String code;

public SolvePageResponse(UserRoom entity, List<UserDto.Response> rankUserDtoList) {
this.ProblemproblemDto = new ProblemDto.Response(entity.getRoom().getProblem());
this.problemResponseDto = new ProblemDto.Response(entity.getRoom().getProblem());
this.rankUserDtoList = rankUserDtoList;
this.link = entity.getRoom().getLink();
this.language = entity.getLanguage();
Expand Down

0 comments on commit 6132a28

Please sign in to comment.