Files
negareh-api/src/modules/print/dto/update-print.dto.ts
T
2026-01-24 16:13:37 +03:30

5 lines
175 B
TypeScript

import { PartialType } from '@nestjs/swagger';
import { CreateSectionDto } from './create-section.dto';
export class UpdatePrintDto extends PartialType(CreateSectionDto) { }