Files
zod-backend/src/card/dtos/responses/parent-transfer-item.response.dto.ts
2025-10-16 12:25:16 +03:00

17 lines
334 B
TypeScript

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;
}