F4: remove legacy survey review DTO

This commit is contained in:
2026-09-08 06:27:24 -03:00
parent 46c2abb4d1
commit fbf426ed90
@@ -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;
}