mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 15:30:56 +00:00
10 lines
304 B
TypeScript
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;
|
|
}
|