10 lines
254 B
Kotlin
10 lines
254 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 itemFoundStatus: FoundStatus
|
|
)
|