From dea007581ccd9ae09b1101e3d84c4141501f7c91 Mon Sep 17 00:00:00 2001 From: enlineawork Date: Mon, 7 Sep 2026 23:15:41 -0300 Subject: [PATCH] F4: remove survey planning DTOs --- api-v3/src/survey-planning/dto/assign-survey-target.dto.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 api-v3/src/survey-planning/dto/assign-survey-target.dto.ts diff --git a/api-v3/src/survey-planning/dto/assign-survey-target.dto.ts b/api-v3/src/survey-planning/dto/assign-survey-target.dto.ts deleted file mode 100644 index 84bf835..0000000 --- a/api-v3/src/survey-planning/dto/assign-survey-target.dto.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { IsOptional, IsUUID } from 'class-validator'; - -export class AssignSurveyTargetDto { - @IsOptional() - @IsUUID('4') - assignedUserId!: string | null; -}