9 lines
168 B
Kotlin
9 lines
168 B
Kotlin
package kr.co.vividnext.sodalive.fcm
|
|
|
|
data class PushRequest(
|
|
val memberIds: List<Long>,
|
|
val title: String,
|
|
val message: String,
|
|
val isAuth: Boolean?
|
|
)
|