14 lines
301 B
Kotlin
14 lines
301 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,
|
|
val currency: String,
|
|
val priceStr: String
|
|
)
|