Rework Expenses resource (#3)
Co-authored-by: Joe Arndt <jmarndt@users.noreply.github.com> Reviewed-on: #3
This commit is contained in:
parent
c6434de89d
commit
6600745072
28 changed files with 317 additions and 89 deletions
6
src/expenses/dto/update-expense.dto.ts
Normal file
6
src/expenses/dto/update-expense.dto.ts
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { PartialType } from '@nestjs/mapped-types';
|
||||
import { CreateExpenseDto } from './create-expense.dto';
|
||||
|
||||
export class UpdateExpenseDto extends PartialType(CreateExpenseDto) {
|
||||
id: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue