dating/src/auth/dto/register.response.dto.ts

13 lines
185 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
export class RegisterResponseDto {
@ApiProperty()
id: number;
@ApiProperty()
name: string;
@ApiProperty()
email: string;
}