diff --git a/api-v3/src/survey-execution/dto/review-survey-report.dto.ts b/api-v3/src/survey-execution/dto/review-survey-report.dto.ts deleted file mode 100644 index cf878fb..0000000 --- a/api-v3/src/survey-execution/dto/review-survey-report.dto.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { IsEnum, IsOptional, IsString, MaxLength } from 'class-validator'; - -export enum SurveyReviewDecision { - APPROVE = 'APPROVE', - REJECT = 'REJECT', -} - -export class ReviewSurveyReportDto { - @IsEnum(SurveyReviewDecision) - decision!: SurveyReviewDecision; - - @IsOptional() - @IsString() - @MaxLength(4000) - notes?: string | null; -}