8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import { IsString, Length } from 'class-validator';
|
|
|
|
export class CreateInspectionReportRevisionDto {
|
|
@IsString()
|
|
@Length(5, 1000)
|
|
changeSummary!: string;
|
|
}
|