Files
scavengerhunt-api/src/main/kotlin/net/halfbinary/scavengerhuntapi/model/response/TeamResponse.kt

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
)