feat: transfer money to child

This commit is contained in:
Abdalhameed Ahmad
2025-09-07 20:14:28 +03:00
parent 44b5937f7a
commit 9b0e1791da
10 changed files with 128 additions and 5 deletions

View File

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