import { ApiProperty } from '@nestjs/swagger'; import { DemandDTO as BaseDemandDTO } from '../../src/pods/demand/demand.dto'; export class DemandDTO extends BaseDemandDTO { @ApiProperty({ type: String }) product: string; }