From d05ea8405af6d039e3da21fd7e4048163d7c252e Mon Sep 17 00:00:00 2001 From: enlineawork Date: Wed, 9 Sep 2026 09:33:02 -0300 Subject: [PATCH] =?UTF-8?q?feat(f6):=20agregar=20DTO=20de=20valores=20t?= =?UTF-8?q?=C3=A9cnicos=20por=20objeto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/update-inventory-technical-values.dto.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 api-v3/src/asset-master/dto/update-inventory-technical-values.dto.ts diff --git a/api-v3/src/asset-master/dto/update-inventory-technical-values.dto.ts b/api-v3/src/asset-master/dto/update-inventory-technical-values.dto.ts new file mode 100644 index 0000000..83c2bde --- /dev/null +++ b/api-v3/src/asset-master/dto/update-inventory-technical-values.dto.ts @@ -0,0 +1,6 @@ +import { IsObject } from 'class-validator'; + +export class UpdateInventoryTechnicalValuesDto { + @IsObject() + values!: Record; +}