mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 00:24:54 +00:00
17 lines
334 B
TypeScript
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;
|
|
}
|
|
|