UserDTO

data class UserDTO(val username: String, val email: String? = null, val description: String? = null, val profilePicture: String? = null)

Data transfer object for the user.

Parameters

username

The username of the user.

description

The description of the user.

profilePicture

The profile picture of the user.

Constructors

Link copied to clipboard
constructor(username: String, email: String? = null, description: String? = null, profilePicture: String? = null)

Properties

Link copied to clipboard
val description: String? = null
Link copied to clipboard
val email: String? = null
Link copied to clipboard
val profilePicture: String? = null
Link copied to clipboard