import { ApiProperty } from '@nestjs/swagger'; export class TransferToJuniorResponseDto { @ApiProperty({ example: 300.42 }) newAmount!: number; constructor(newAmount: number) { this.newAmount = newAmount; } }