8 lines
140 B
Kotlin
8 lines
140 B
Kotlin
package com.aiosman.ravenow.event
|
|
|
|
import com.aiosman.ravenow.entity.MomentEntity
|
|
|
|
data class MomentAddEvent(
|
|
val moment:MomentEntity
|
|
)
|