10 lines
227 B
Kotlin
10 lines
227 B
Kotlin
package kr.co.vividnext.sodalive.point
|
|
|
|
import com.querydsl.core.annotations.QueryProjection
|
|
|
|
data class GetPointUseStatusResponse @QueryProjection constructor(
|
|
val title: String,
|
|
val date: String,
|
|
val point: Int
|
|
)
|