import { ApiPropertyOptional } from '@nestjs/swagger'; export class SayahResponseDto { @ApiPropertyOptional() ReturnValue?: boolean; @ApiPropertyOptional() HasError?: boolean; @ApiPropertyOptional({ type: Object, nullable: true }) Errors?: Record | null; }