This commit is contained in:
2025-09-10 16:15:36 -06:00
parent d9afbcd1e9
commit 70478f3fc3
16 changed files with 170 additions and 99 deletions
+5 -6
View File
@@ -1,10 +1,9 @@
import { IsString } from "class-validator";
import { IsString } from 'class-validator';
export class CreateUserDto {
@IsString()
usuario: string;
@IsString()
usuario:string
@IsString()
password:string
@IsString()
password: string;
}