Files
pcpuma_unam_api/src/carrera-programa/dto/carrera-programa-delete.dto.ts
T

7 lines
126 B
TypeScript
Raw Normal View History

2022-05-30 21:28:05 -05:00
import { IsInt } from 'class-validator';
export class CarreraProgramaDeleteDto {
@IsInt()
id_carrera_programa: number;
}