Skip to content

Commit

Permalink
[feat] 여행지 갤러리 응답데이터 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
junmo95 committed Jan 25, 2024
1 parent 3d8038b commit 0804635
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
public record TripRecordScheduleImageListResponseDto(
Long tripRecordId,
String imageUrl,
Integer TripRecordStoreNum
Integer tripRecordStoreCount
) {

@Builder
public TripRecordScheduleImageListResponseDto(Long tripRecordId, String imageUrl,
Integer TripRecordStoreNum) {
Integer tripRecordStoreCount) {
this.tripRecordId = tripRecordId;
this.imageUrl = imageUrl;
this.TripRecordStoreNum = TripRecordStoreNum;
this.tripRecordStoreCount = tripRecordStoreCount;
}
}

0 comments on commit 0804635

Please sign in to comment.