forked from Yara724/api
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import { IsMobilePhone, IsString } from "class-validator";
|
|
|
|
export class UserRegisterDto {
|
|
@IsString({ message: "Cellphone number must be string" })
|
|
@IsMobilePhone("fa-IR")
|
|
cellphoneNumber: string;
|
|
}
|