import { IsString, IsNotEmpty } from 'class-validator'; import { ApiProperty } from '@nestjs/swagger'; export class SendSmsCodeDto { @ApiProperty({ description: 'Phone number to send SMS code to', example: '+8613800138000' }) @IsString() @IsNotEmpty() phone: string; }