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

agregando login user dto

parent e3528af5
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
import { ApiProperty } from '@nestjs/swagger';

export class LoginUserDto {
  @ApiProperty()
  email: string;
  @ApiProperty()
  password: string;
}