import { ApiProperty } from '@nestjs/swagger'; import { IsString, IsNotEmpty } from 'class-validator'; export class AvmExplainQueryDto { @ApiProperty({ description: 'ID of the stored valuation to explain', example: 'val-abc123', }) @IsString() @IsNotEmpty() valuationId!: string; }