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