Files
zod-backend/src/card/dtos/responses/account-iban.response.dto.ts
2025-09-07 20:23:11 +03:00

11 lines
216 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
export class AccountIbanResponseDto {
@ApiProperty({ example: 'DE89370400440532013000' })
iban!: string;
constructor(iban: string) {
this.iban = iban;
}
}