import { ApiProperty } from '@nestjs/swagger'; import { MaxLength, MinLength } from 'class-validator'; export class ConfirmDeleteRequestDto { @ApiProperty() @MinLength(6) @MaxLength(6) code: string; @ApiProperty() @MaxLength(300) reason: string; } export class ConfirmReactivateRequestDto { @ApiProperty() @MinLength(6) @MaxLength(6) code: string; }