first commit v3 initialiazed a temporary repository for darmanet client

This commit is contained in:
2026-09-08 16:04:01 +03:30
commit 5c7fd95052
216 changed files with 30050 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsEmail, IsStrongPassword } from 'class-validator';
export class CreateAdminDto {
@ApiProperty({ description: 'email please' })
@IsEmail()
email: string;
@ApiProperty()
@IsStrongPassword({ minLength: 5 })
password: string;
@ApiProperty()
mobile: string;
}