13 lines
185 B
TypeScript
13 lines
185 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class RegisterResponseDto {
|
|
@ApiProperty()
|
|
id: number;
|
|
|
|
@ApiProperty()
|
|
name: string;
|
|
|
|
@ApiProperty()
|
|
email: string;
|
|
}
|