Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@

import Foundation


public struct AnswerCommentList: Decodable, Sendable {
public let answerCommentInfos: [Content]

public let content: [Content]

public struct Content: Decodable, Sendable {
public let answerCommentId: Int
public let writerId: Int
public let content: String
public let heartCount: Int
public let isLiked: Bool
public let isMine: Bool
public let createdAt: String
}
}