7 lines
212 B
Kotlin
7 lines
212 B
Kotlin
package net.halfbinary.scavengerhuntapi.model.converter
|
|
|
|
import net.halfbinary.scavengerhuntapi.model.response.RefreshResponse
|
|
|
|
fun String.toRefreshResponse(): RefreshResponse {
|
|
return RefreshResponse(this)
|
|
} |