Commit e3528af5 authored by Diego Iván's avatar Diego Iván
Browse files

agregando dto de login user

parent 17b20c04
Loading
Loading
Loading
Loading
+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;
}