refactor(nestjs): users module

This commit is contained in:
Ahmed Bouhuolia
2025-05-19 19:21:06 +02:00
parent ce058b9416
commit 985e1dbc01
42 changed files with 1723 additions and 75 deletions

View File

@@ -0,0 +1,15 @@
import { IsNotEmpty, IsString } from 'class-validator';
export class InviteUserDto {
@IsString()
@IsNotEmpty()
firstName: string;
@IsString()
@IsNotEmpty()
lastName: string;
@IsString()
@IsNotEmpty()
password: string;
}