9 lines
177 B
Kotlin
9 lines
177 B
Kotlin
package net.halfbinary.scavengerhuntapi.model.response
|
|
|
|
import net.halfbinary.scavengerhuntapi.model.TeamId
|
|
|
|
data class TeamResponse(
|
|
val id: TeamId,
|
|
val name: String
|
|
)
|