Package-level declarations

Types

Link copied to clipboard
interface AuthState

The authentication state of the user: LoggedIn or Guest

Link copied to clipboard
data class NewUser(val name: String, val email: String, val password: String)

This entity represents a new user to be created

Link copied to clipboard
data class User(val name: String, val email: String)

This entity represents a user

Link copied to clipboard
data class UserCredentials(val email: String, val password: String)

The credentials used by a user to enter the app