8 lines
142 B
Kotlin
8 lines
142 B
Kotlin
package kr.co.vividnext.sodalive.fcm
|
|
|
|
data class PushRequest(
|
|
val memberIds: List<Long>,
|
|
val title: String,
|
|
val message: String
|
|
)
|