import { IsInt } from 'class-validator';
export class DeleteCarreraProgramaDto {
@IsInt()
id_carrera_programa: number;
}