import { ApiProperty } from '@nestjs/swagger'; export class ParentTransferItemDto { @ApiProperty({ example: '2025-10-14T09:53:40.000Z' }) date!: Date; @ApiProperty({ example: 50.0 }) amount!: number; @ApiProperty({ example: 'SAR' }) currency!: string; @ApiProperty({ example: 'Ahmed Ali' }) childName!: string; }