import { IsDefined, IsInt, IsNotEmpty, IsString, } from '@nestjs/class-validator'; export class ComentarioDTO { @IsString() @IsNotEmpty() @IsDefined() readonly comentario: string; @IsInt() @IsNotEmpty() readonly usuario_id: number; @IsInt() @IsNotEmpty() readonly linea_programatica_id: number; @IsInt() @IsNotEmpty() readonly eje_estrategico_id: number; }