9 lines
225 B
Kotlin
9 lines
225 B
Kotlin
package kr.co.vividnext.sodalive.fcm
|
|
|
|
import com.querydsl.core.annotations.QueryProjection
|
|
|
|
data class GetMessageRecipientPushTokenResponse @QueryProjection constructor(
|
|
val pushToken: String,
|
|
val container: String
|
|
)
|