Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
dkflfkd53 committed Sep 26, 2024
1 parent 38dbd1d commit 0f0c8d6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
public record NoticeResponse(
String id,
String title,
String content,
String writerName,
LocalDateTime createdAt,
Boolean checked
Expand All @@ -15,6 +16,7 @@ public static NoticeResponse fromModel(NoticeModel model) {
return new NoticeResponse(
model.id(),
model.title(),
model.content(),
model.writerName(),
model.createdAt(),
model.checked()
Expand Down

0 comments on commit 0f0c8d6

Please sign in to comment.