about to move dtos

This commit is contained in:
2025-08-29 10:24:31 +02:00
parent b052622c6f
commit 3633b88902
3 changed files with 0 additions and 24 deletions
@@ -1,10 +0,0 @@
import { IsUUID, IsOptional } from 'class-validator';
export class CreateParentDto {
@IsUUID()
user_id: string;
@IsOptional()
@IsUUID()
co_parent_id?: string;
}
@@ -1,4 +0,0 @@
import { CreateParentDto } from "./create_parents.dto";
import { PartialType } from '@nestjs/mapped-types';
export class UpdateParentsDto extends PartialType(CreateParentDto) {}