feat(f4): add GEDO officialization DTO

This commit is contained in:
2026-09-07 20:56:32 -03:00
parent b8fde4c32d
commit 0c35e801eb
@@ -0,0 +1,13 @@
import { Transform } from 'class-transformer';
import { IsISO8601, IsString, MaxLength, MinLength } from 'class-validator';
export class OfficializeInspectionReportDto {
@Transform(({ value }) => typeof value === 'string' ? value.trim() : value)
@IsString()
@MinLength(2)
@MaxLength(255)
gedoIfIdentifier!: string;
@IsISO8601({ strict: true })
gedoOfficializedAt!: string;
}