Loading backend/src/user/dto/create-user.dto.ts +14 −1 Original line number Diff line number Diff line export class CreateUserDto {} import { ApiProperty } from '@nestjs/swagger'; export class CreateUserDto { @ApiProperty() email: string; @ApiProperty() name: string; @ApiProperty() lastName: string; @ApiProperty() password: string; @ApiProperty() birthdate: Date; } Loading
backend/src/user/dto/create-user.dto.ts +14 −1 Original line number Diff line number Diff line export class CreateUserDto {} import { ApiProperty } from '@nestjs/swagger'; export class CreateUserDto { @ApiProperty() email: string; @ApiProperty() name: string; @ApiProperty() lastName: string; @ApiProperty() password: string; @ApiProperty() birthdate: Date; }