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 )