12 lines
206 B
Scala
12 lines
206 B
Scala
package util.mapper
|
|
|
|
import de.knockoutwhist.utils.events.SimpleEvent
|
|
import play.api.libs.json.JsObject
|
|
|
|
trait SimpleEventMapper[T <: SimpleEvent] {
|
|
|
|
def id: String
|
|
def toJson(event: T): JsObject
|
|
|
|
}
|