Files
grow-api/src/reserves/dto/create-reserve-item.dto.ts
T
2026-06-29 08:39:34 +03:30

12 lines
197 B
TypeScript

import { IsNotEmpty, IsUUID } from 'class-validator';
export class CreateReserveItemDto {
@IsUUID()
@IsNotEmpty()
serviceId: string;
@IsUUID()
@IsNotEmpty()
serviceSkillId: string;
}