10 lines
198 B
Kotlin
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
|
|
)
|