Package-level declarations

Types

Link copied to clipboard
open class ReviewDTO
Link copied to clipboard
data class ReviewRequestDto(val title: String, val content: String, val image: String?, val score: Int)

리뷰 생성 요청 DTO

Link copied to clipboard
data class ReviewResponseDto(val id: Long, val title: String, val content: String, val image: String?, val score: Int, val storeId: Long, val userName: String)

리뷰 조회 응답 DTO