Files
scavengerhunt-api/src/main/kotlin/net/halfbinary/scavengerhuntapi/model/response/HuntResponse.kt

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
)