feat: added change task phase DTO for task

This commit is contained in:
2026-07-01 13:17:21 +03:30
parent 3d59a2fa40
commit 26b8268f73
@@ -0,0 +1,9 @@
import { ApiProperty } from '@nestjs/swagger';
import { IsUUID, IsNotEmpty } from 'class-validator';
export class ChangeTaskPhaseDto {
@ApiProperty({ description: 'ID of the new task phase', example: 'a1b2c3d4-e5f6-7890-abcd-ef1234567890' })
@IsUUID()
@IsNotEmpty()
taskPhaseId: string;
}