Skip to content

Commit

Permalink
[SL-15 CHORE] page1 GET 요청 시 etcDetail도 return
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyoungpark00 committed Jan 2, 2024
1 parent 71516c1 commit 61a2733
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
@AllArgsConstructor
public class PathToKnowGetResponse {
private String pathType;
private String etcDetail;
private Long pathToKnowId;

public PathToKnowGetResponse(PathToKnow pathToKnow) {
this.pathType = pathToKnow.getPathType().name();
this.pathToKnowId = pathToKnow.getPathToKnowId();
this.etcDetail = pathToKnow.getEtcDetail();
}
}

0 comments on commit 61a2733

Please sign in to comment.