13 lines
314 B
Kotlin
13 lines
314 B
Kotlin
package net.halfbinary.scavengerhuntapi.model.response
|
|
|
|
import net.halfbinary.scavengerhuntapi.model.HuntId
|
|
import java.time.LocalDateTime
|
|
|
|
data class HuntResponse(
|
|
val id: HuntId,
|
|
val title: String,
|
|
val startDateTime: LocalDateTime,
|
|
val endDateTime: LocalDateTime,
|
|
val isTerminated: Boolean
|
|
)
|