Package-level declarations
Types
Link copied to clipboard
data class ArticleResponse(val id: Long, val title: String, val content: String, val images: List<String>, val comments: List<CommentResponse>, val author: UserSummaryResponse, val createdAt: String, val updatedAt: String, val viewCount: Long)
게시글 상세 응답 DTO
Link copied to clipboard
data class ArticleSummaryResponse(val id: Long, val title: String, val content: String, val thumbnail: String?, val author: UserSummaryResponse, val createdAt: String)
게시글 헤더 응답 DTO
Link copied to clipboard
data class CommentResponse(val id: Long, val content: String, val author: UserSummaryResponse, val createdAt: String, val updatedAt: String)
댓글 응답 DTO