mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2026-03-10 18:41:46 +00:00
17 lines
376 B
TypeScript
17 lines
376 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class ChildTransferItemDto {
|
|
@ApiProperty({ example: '2025-10-14T09:53:40.000Z' })
|
|
date!: Date;
|
|
|
|
@ApiProperty({ example: 50.0 })
|
|
amount!: number;
|
|
|
|
@ApiProperty({ example: 'SAR' })
|
|
currency!: string;
|
|
|
|
@ApiProperty({ example: 'You received {{amount}} {{currency}} from your parent.' })
|
|
message!: string;
|
|
}
|
|
|