Skip to content

Commit

Permalink
feat(Meeting): 조회 response에 duration 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Lightieey committed Nov 23, 2023
1 parent b38e96e commit b7c240d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/kr/co/helloplum/dto/MeetingGetResponseDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public class MeetingGetResponseDto {
private LocalDate endDate;
private String place;
private String placeDetail;
private String duration;
private String host;
private String password;
private String info;
Expand All @@ -32,6 +33,7 @@ public static MeetingGetResponseDto of(Meeting meeting) {
meeting.getEndDate(),
meeting.getPlace(),
meeting.getPlaceDetail(),
meeting.getDuration(),
meeting.getHost(),
meeting.getPassword(),
meeting.getInfo(),
Expand Down

0 comments on commit b7c240d

Please sign in to comment.