Files
docmost/server/src/core/page/dto/move-page.dto.ts
T
Philipinho 2689b267cf sidebar page tree
* frontend and backend implementation
2023-10-15 01:01:17 +01:00

19 lines
278 B
TypeScript

import { IsString, IsOptional, IsUUID } from 'class-validator';
export class MovePageDto {
@IsUUID()
id: string;
@IsOptional()
@IsString()
after?: string;
@IsOptional()
@IsString()
before?: string;
@IsOptional()
@IsString()
parentId?: string | null;
}