mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2026-03-10 18:41:46 +00:00
11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class AccountIbanResponseDto {
|
|
@ApiProperty({ example: 'DE89370400440532013000' })
|
|
iban!: string;
|
|
|
|
constructor(iban: string) {
|
|
this.iban = iban;
|
|
}
|
|
}
|