From 30c647470ca402d3158e0a34c50a7fd826b155de Mon Sep 17 00:00:00 2001 From: thinkyside Date: Sat, 21 Jun 2025 09:28:43 +0900 Subject: [PATCH 1/2] =?UTF-8?q?AnswerCommentList=20DTO=20=EC=97=85?= =?UTF-8?q?=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DTO/AnswerComment/AnswerCommentList.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift b/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift index e981086..bdbb292 100644 --- a/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift +++ b/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift @@ -7,8 +7,8 @@ import Foundation - public struct AnswerCommentList: Decodable, Sendable { + public let answerCommentInfos: [Content] public struct Content: Decodable, Sendable { @@ -16,6 +16,8 @@ public struct AnswerCommentList: Decodable, Sendable { public let writerId: Int public let content: String public let heartCount: Int + public let isLiked: Bool + public let isMine: Bool public let createdAt: String } } From e8f022119cb5013feb2ee637dcdf21f518cb392f Mon Sep 17 00:00:00 2001 From: thinkyside Date: Sat, 21 Jun 2025 09:34:33 +0900 Subject: [PATCH 2/2] =?UTF-8?q?AnswerCommentList=20DTO=20=EC=98=A4?= =?UTF-8?q?=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../QappleRepository/DTO/AnswerComment/AnswerCommentList.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift b/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift index bdbb292..4e6ad3b 100644 --- a/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift +++ b/Sources/QappleRepository/DTO/AnswerComment/AnswerCommentList.swift @@ -9,7 +9,7 @@ import Foundation public struct AnswerCommentList: Decodable, Sendable { - public let answerCommentInfos: [Content] + public let content: [Content] public struct Content: Decodable, Sendable { public let answerCommentId: Int