Skip to content

Commit

Permalink
feat : 객체 생성 과정을 하나로 통일하기 위해 생성자 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
packdev937 committed Oct 11, 2023
1 parent 07f97b6 commit dbb50f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class MissedInputResponseDto {

List<LocalDate> localDates = new ArrayList<>();

public void addDate(LocalDate localDate) {
localDates.add(localDate);
public MissedInputResponseDto(List<LocalDate> localDates) {
this.localDates = localDates;
}
}

0 comments on commit dbb50f9

Please sign in to comment.