1
0
forked from Yara724/api
Files
yara724-api/src/request-management/dto/send-expert-initiated-link.v2.dto.ts
2026-06-15 11:27:25 +03:30

13 lines
341 B
TypeScript

import { ApiProperty } from "@nestjs/swagger";
import { IsNotEmpty, IsString } from "class-validator";
export class SendExpertInitiatedLinkV2Dto {
@ApiProperty({
description: "First party phone number. The link SMS will be sent to this number.",
example: "09123456789",
})
@IsString()
@IsNotEmpty()
phoneNumber: string;
}