app/app/src/main/java/com/danilafe/fencelessgrazing/model/LoginResult.kt

8 lines
249 B
Kotlin

package com.danilafe.fencelessgrazing.model
/**
* The result of a successful authentication via the `/login` endpoint.
*
* @param token the JWT authorization token to be used for future API requests.
*/
data class LoginResult(val token: String)