modulo input y output dto

This commit is contained in:
xXpuma99Xx
2022-06-13 10:11:50 -05:00
parent c3fb97908c
commit 6bbad07bee
4 changed files with 21 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
import { IsInt, IsString } from 'class-validator';
export class CreateModuloDto {
@IsInt()
id_institucion: number;
@IsString()
modulo: string;
}