auth swagger spec

This commit is contained in:
Pravdin Egor
2023-09-19 21:17:00 +07:00
parent 968d83e58b
commit bf38ec5355
8 changed files with 58 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
import { ApiProperty } from '@nestjs/swagger';
export class RegisterResponseDto {
@ApiProperty()
id: number;
@ApiProperty()
name: string;
@ApiProperty()
email: string;
}