common-cents-api/src/expenses/dto/update-expense.dto.ts
Joe df6733caa9 Initial web app consumption/integration (#5)
Co-authored-by: Joe Arndt <jmarndt@users.noreply.github.com>
Reviewed-on: #5
2026-02-23 21:15:19 +00:00

9 lines
244 B
TypeScript

import { CreateExpenseDto } from './create-expense.dto';
import { ApiProperty } from '@nestjs/swagger';
export class UpdateExpenseDto extends CreateExpenseDto {
@ApiProperty({
description: 'Unique ID of the expense'
})
id: string;
}