Skip to content

Commit

Permalink
refactor: 기존 dto 변수명과 통일
Browse files Browse the repository at this point in the history
  • Loading branch information
hyxklee committed Nov 19, 2024
1 parent 572fb2d commit 77f2850
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public record Save(
public record Update(
@NotNull String title,
@NotNull String content,
@Valid List<@NotNull FileUpdateRequest> fileUrls
@Valid List<@NotNull FileUpdateRequest> files
) {
}

Expand All @@ -38,7 +38,7 @@ public record Response(
LocalDateTime time,//modifiedAt
Integer commentCount,
List<CommentDTO.Response> comments,
List<FileResponse> files
List<FileResponse> fileUrls
) {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public record Save(
public record Update(
@NotNull String title,
@NotNull String content,
@Valid List<@NotNull FileUpdateRequest> fileUrls
@Valid List<@NotNull FileUpdateRequest> files
){}

@Builder
Expand All @@ -36,7 +36,7 @@ public record Response(
LocalDateTime time,//modifiedAt
Integer commentCount,
List<CommentDTO.Response> comments,
List<FileResponse> files
List<FileResponse> fileUrls
){}

@Builder
Expand Down

0 comments on commit 77f2850

Please sign in to comment.