12 lines
249 B
Kotlin
12 lines
249 B
Kotlin
package kr.co.vividnext.sodalive.can
|
|
|
|
import com.querydsl.core.annotations.QueryProjection
|
|
|
|
data class CanResponse @QueryProjection constructor(
|
|
val id: Long,
|
|
val title: String,
|
|
val can: Int,
|
|
val rewardCan: Int,
|
|
val price: Int
|
|
)
|