User Dto
class UserDto(val userId: String, val projectId: String, val revoked: Boolean, val pinLength: Int, val mpinId: ByteArray, val token: ByteArray, val dtas: String, val publicKey: ByteArray?)
Defines the persistent data representation of a user.
A user is uniquely identified by the composite key of (userId
, projectId
).
WARNING: This object contains sensitive data. Implementers must ensure secure storage (e.g., encryption at rest).