mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 16:44:54 +00:00
feat: transfer money to child
This commit is contained in:
10
src/junior/dtos/response/transfer-to-junior.response.dto.ts
Normal file
10
src/junior/dtos/response/transfer-to-junior.response.dto.ts
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user