import { IsMobilePhone, IsNumberString, IsString } from "class-validator"; export class UserLoginDto { @IsString({ message: "Cellphone number must be string" }) @IsMobilePhone("fa-IR") cellphoneNumber: string; @IsNumberString() otp: string; }