mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 06:23:06 +08:00
2689b267cf
* frontend and backend implementation
19 lines
278 B
TypeScript
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;
|
|
}
|