import { IsString } from "class-validator";
export class CreateUserDto {
@IsString()
usuario:string
password:string
}