package net.halfbinary.scavengerhuntapi.model.response import net.halfbinary.scavengerhuntapi.model.FoundStatus import net.halfbinary.scavengerhuntapi.model.ItemId import java.time.LocalDateTime data class TeamItemResponse( val id: ItemId, val hunterName: String?, val itemFoundStatus: FoundStatus, val itemStatusChangeDateTime: LocalDateTime, )