AuthUser

data class AuthUser(val id: String, val name: String, val profilePictureUri: Uri?)

Represents an authenticated user with basic information.

Constructors

Link copied to clipboard
constructor(id: String, name: String, profilePictureUri: Uri?)

Properties

Link copied to clipboard
val id: String

The unique identifier for the user.

Link copied to clipboard

The user's name.

Link copied to clipboard

The URI for the user's profile picture, or null if not available.