targo-backend/src/modules/expenses/dtos/update-expense.dto.ts
2025-10-22 12:42:32 -04:00

6 lines
224 B
TypeScript

import { OmitType, PartialType } from "@nestjs/swagger";
import { ExpenseDto } from "./expense.dto";
export class updateExpenseDto extends PartialType (
OmitType(ExpenseDto, ['is_approved', 'timesheet_id'] as const)
){}