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

10 lines
198 B
Kotlin

package net.halfbinary.scavengerhuntapi.model.response
import net.halfbinary.scavengerhuntapi.model.ItemId
data class ItemResponse(
val id: ItemId,
val name: String,
val points: Int
)