9 lines
201 B
Kotlin
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
|
|
)
|