From ce3e97003b7912916e3efebf0432fdc466dc523b Mon Sep 17 00:00:00 2001 From: Matin Date: Tue, 18 Feb 2025 12:45:12 +0330 Subject: [PATCH] chore: create customer --- src/modules/users/DTO/create-user.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/users/DTO/create-user.dto.ts b/src/modules/users/DTO/create-user.dto.ts index 512265a..51c50bf 100644 --- a/src/modules/users/DTO/create-user.dto.ts +++ b/src/modules/users/DTO/create-user.dto.ts @@ -1,4 +1,4 @@ -import { ApiProperty, ApiPropertyOptional, PartialType } from "@nestjs/swagger"; +import { ApiProperty, ApiPropertyOptional } from "@nestjs/swagger"; import { IsEmail, IsMobilePhone, IsNotEmpty, IsNumberString, IsOptional, IsString, IsUrl, Length, MinLength } from "class-validator"; import { AuthMessage, FinancialMessage, UserMessage } from "../../../common/enums/message.enum";