src/user/dto/update-user.dto.ts
Properties |
Readonly bio |
bio:
|
Type : string
|
Defined in src/user/dto/update-user.dto.ts:4
|
Readonly email |
email:
|
Type : string
|
Defined in src/user/dto/update-user.dto.ts:3
|
Readonly image |
image:
|
Type : string
|
Defined in src/user/dto/update-user.dto.ts:5
|
Readonly username |
username:
|
Type : string
|
Defined in src/user/dto/update-user.dto.ts:2
|
export class UpdateUserDto {
readonly username: string;
readonly email: string;
readonly bio: string;
readonly image: string;
}