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

7 lines
161 B
Kotlin

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