8 lines
189 B
Kotlin
8 lines
189 B
Kotlin
package net.halfbinary.scavengerhuntapi.model.response
|
|
|
|
import net.halfbinary.scavengerhuntapi.model.HunterId
|
|
|
|
data class HunterSummaryResponse(
|
|
val id: HunterId,
|
|
val name: String
|
|
) |