11 lines
247 B
Kotlin
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
|
|
)
|