Files
edr-platform/apps/edr-freight-api/src/modules/contracts/dto/renew-contract.dto.ts
2026-06-26 23:24:48 +00:00

10 lines
304 B
TypeScript

import { ApiPropertyOptional } from '@nestjs/swagger';
import { IsOptional, IsString } from 'class-validator';
export class RenewContractDto {
@ApiPropertyOptional({ description: 'Reference of the prior contract being renewed.' })
@IsOptional()
@IsString()
previousContractReference?: string;
}