7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
import { PaymentDTO } from './PaymentDTO';
|
|
|
|
export class CreatePaymentOutputDTO {
|
|
@ApiProperty({ type: PaymentDTO })
|
|
payment!: PaymentDTO;
|
|
} |