forked from Yara724/api
11 lines
255 B
TypeScript
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;
|
|
}
|