1
0
forked from Yara724/api
Files
yara724-api/src/common/auth/dtos/user-login.dto.ts
2026-06-15 11:27:25 +03:30

11 lines
255 B
TypeScript

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;
}