1
0
forked from Yara724/api
Files
yara724-api/src/request-management/dto/send-expert-initiated-link.v2.dto.ts
2026-04-22 11:13:47 +03:30

14 lines
385 B
TypeScript

import { ApiProperty } from "@nestjs/swagger";
import { IsNotEmpty, IsString } from "class-validator";
export class SendExpertInitiatedLinkV2Dto {
@ApiProperty({
description:
"Frontend route path (same as add-second-party flow), e.g. requestManagement/firstParty",
example: "requestManagement/firstParty",
})
@IsString()
@IsNotEmpty()
frontendRoute: string;
}