Files
lcbp3/backend/src/modules/circulation/dto/force-close-circulation.dto.ts
T

11 lines
375 B
TypeScript

import { IsString, IsNotEmpty, MinLength } from 'class-validator';
import { ApiProperty } from '@nestjs/swagger';
export class ForceCloseCirculationDto {
@ApiProperty({ description: 'เหตุผลการปิดใบเวียนแบบบังคับ (บังคับกรอก)' })
@IsString()
@IsNotEmpty()
@MinLength(5)
reason!: string;
}