src/user/request/dto/export-user-data.dto.ts
Properties |
Type : string
|
Decorators :
@ApiProperty({type: String, maxLength: 320, required: false})
|
import { ApiProperty } from '@nestjs/swagger';
export class ExportUserDataDTO {
@ApiProperty({ type: String, maxLength: 320, required: false })
email: string;
}