UserEntity

@Serializable
data class UserEntity(val uuid: String, val name: String, val address: String? = null, val lastSeen: Long? = null)

Represents a user in the system.

Constructors

Link copied to clipboard
constructor(uuid: String, name: String, address: String? = null, lastSeen: Long? = null)

Properties

Link copied to clipboard

Optional network address (null if offline)

Link copied to clipboard

Optional timestamp of the last time the user was seen

Link copied to clipboard

Display name of the user

Link copied to clipboard

Unique identifier for the user