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

9 lines
201 B
Kotlin

package net.halfbinary.scavengerhuntapi.model.response
import net.halfbinary.scavengerhuntapi.model.RefreshId
data class LoginResponse(
val accessToken: String,
val refreshToken: RefreshId
)