web-service/apps/freeblox-web-service/src/services/auth/dtos/login.dto.ts

10 lines
146 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
export class LoginDto {
@ApiProperty()
email: string;
@ApiProperty()
password: string;
}