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

8 lines
158 B
Kotlin

package net.halfbinary.scavengerhuntapi.model.response
data class TeamLeaderboardResponse(
val rank: Int,
val teamName: String,
val score: Int
)