parsian inquiries implemented

This commit is contained in:
2026-06-13 12:59:15 +03:30
parent ead2e301e5
commit 0aad5a34d2
19 changed files with 771 additions and 50 deletions

View File

@@ -0,0 +1,9 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsNotEmpty, IsString } from 'class-validator';
export class PolicyByChassisRequestDto {
@ApiProperty({ example: 'NAAM01E15HK123456', description: 'Vehicle chassis number' })
@IsString()
@IsNotEmpty()
chassisNo!: string;
}