mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 00:24:54 +00:00
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class TransferToJuniorResponseDto {
|
|
@ApiProperty({ example: 300.42 })
|
|
newAmount!: number;
|
|
|
|
constructor(newAmount: number) {
|
|
this.newAmount = newAmount;
|
|
}
|
|
}
|