2022-07-24 22:35:00 -05:00
|
|
|
import { IsInt, IsNotEmpty, IsString, MaxLength } from 'class-validator';
|
2022-04-06 15:27:23 -05:00
|
|
|
|
2022-06-13 10:11:50 -05:00
|
|
|
export class CreateModuloDto {
|
2022-04-20 00:13:29 -05:00
|
|
|
@IsInt()
|
2022-04-06 15:27:23 -05:00
|
|
|
id_institucion: number;
|
|
|
|
|
|
|
|
|
|
@IsString()
|
2022-07-24 22:35:00 -05:00
|
|
|
@IsNotEmpty()
|
|
|
|
|
@MaxLength(30)
|
2022-04-06 15:27:23 -05:00
|
|
|
modulo: string;
|
|
|
|
|
}
|