src/user/request/dto/confirm-user-email.dto.ts
Properties |
| code |
Type : string
|
Decorators :
@ApiProperty({type: String, maxLength: 36, required: true})
|
import { ApiProperty } from '@nestjs/swagger';
export class ConfirmUserEmailDTO {
@ApiProperty({ type: String, maxLength: 36, required: true })
code: string;
}