mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
8 lines
263 B
TypeScript
8 lines
263 B
TypeScript
import { OmitType, PartialType } from "@nestjs/mapped-types";
|
|
|
|
import { CreateDropdownSettingDto } from "./create-dropdown-setting.dto";
|
|
|
|
export class UpdateDropdownSettingDto extends PartialType(
|
|
OmitType(CreateDropdownSettingDto, ["children"] as const),
|
|
) {}
|