Files
sodalive-backend-spring-boot/src/main/kotlin/kr/co/vividnext/sodalive/faq/GetFaqResponseItem.kt
2023-08-06 22:10:33 +09:00

11 lines
247 B
Kotlin

package kr.co.vividnext.sodalive.faq
import com.querydsl.core.annotations.QueryProjection
data class GetFaqResponseItem @QueryProjection constructor(
val id: Long,
val category: String,
val question: String,
val answer: String
)