mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 00:24:54 +00:00
10 lines
316 B
TypeScript
10 lines
316 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { IsString } from 'class-validator';
|
|
import { TransferToJuniorRequestDto } from '~/junior/dtos/request';
|
|
|
|
export class FundIbanRequestDto extends TransferToJuniorRequestDto {
|
|
@ApiProperty({ example: 'DE89370400440532013000' })
|
|
@IsString()
|
|
iban!: string;
|
|
}
|