removed sub-categories

This commit is contained in:
Joe Arndt 2026-02-13 11:47:12 -06:00
parent b7acc9e352
commit fdf0efd17f
22 changed files with 71 additions and 295 deletions

View file

@ -1,6 +1,9 @@
import { PartialType } from '@nestjs/mapped-types';
import { CreateExpenseDto } from './create-expense.dto';
import { ApiProperty } from '@nestjs/swagger';
export class UpdateExpenseDto extends PartialType(CreateExpenseDto) {
export class UpdateExpenseDto extends CreateExpenseDto {
@ApiProperty({
description: 'UUID of the expense'
})
id: string;
}