15 lines
232 B
TypeScript
15 lines
232 B
TypeScript
import { IsInt, IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class LoginOperadorDto {
|
|
@IsInt()
|
|
id_modulo: number;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
operador: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
password: string;
|
|
}
|