fix: validate card spending limit before transfering to child

This commit is contained in:
Abdalhameed Ahmad
2025-09-07 21:18:49 +03:00
parent d768da70f2
commit 15a48e4884
10 changed files with 75 additions and 2 deletions

View File

@ -0,0 +1,7 @@
import { ApiProperty } from '@nestjs/swagger';
import { TransferToJuniorRequestDto } from '~/junior/dtos/request';
export class FundIbanRequestDto extends TransferToJuniorRequestDto {
@ApiProperty({ example: 'DE89370400440532013000' })
iban!: string;
}