From a0ebd9bccf946e35919a49521afb6833aa267483 Mon Sep 17 00:00:00 2001 From: andrew Date: Tue, 4 Feb 2025 16:22:14 +0900 Subject: [PATCH] =?UTF-8?q?CLAP-264=20Fix=20:=20=EC=95=8C=EB=A6=BC=20?= =?UTF-8?q?=EB=AA=A9=EB=A1=9D=20=EC=A1=B0=ED=9A=8C=20dto=20isRead=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/notification/response/FindNotificationListResponse.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/clap/server/adapter/inbound/web/dto/notification/response/FindNotificationListResponse.java b/src/main/java/clap/server/adapter/inbound/web/dto/notification/response/FindNotificationListResponse.java index 710939c2..d83c7949 100644 --- a/src/main/java/clap/server/adapter/inbound/web/dto/notification/response/FindNotificationListResponse.java +++ b/src/main/java/clap/server/adapter/inbound/web/dto/notification/response/FindNotificationListResponse.java @@ -20,6 +20,8 @@ public record FindNotificationListResponse( String taskTitle, @Schema(description = "알림 내용", example = "진행 중 or 담당자 이름 등등") String message, + @Schema(description = "읽음 여부", example = "false") + Boolean isRead, @Schema(description = "알림 생성 시간", example = "2025-01-24 14:58") LocalDateTime createdAt ) {