10 lines
283 B
Kotlin
10 lines
283 B
Kotlin
package net.halfbinary.scavengerhuntapi.model.request
|
|
|
|
import jakarta.validation.constraints.NotBlank
|
|
import net.halfbinary.scavengerhuntapi.model.RefreshId
|
|
|
|
data class RefreshRequest(
|
|
@field:NotBlank(message = "Refresh token cannot be blank")
|
|
val refreshToken: RefreshId,
|
|
)
|