Files
scavengerhunt-api/src/main/kotlin/net/halfbinary/scavengerhuntapi/model/response/TeamItemResponse.kt
2026-05-12 10:10:55 -05:00

12 lines
308 B
Kotlin

package net.halfbinary.scavengerhuntapi.model.response
import net.halfbinary.scavengerhuntapi.model.FoundStatus
import net.halfbinary.scavengerhuntapi.model.ItemId
data class TeamItemResponse(
val id: ItemId,
val itemName: String,
val hunterName: String,
val itemFoundStatus: FoundStatus
)