common-cents-api/src/expenses/dto/create-expense.dto.ts
Joe 6600745072 Rework Expenses resource (#3)
Co-authored-by: Joe Arndt <jmarndt@users.noreply.github.com>
Reviewed-on: #3
2026-02-09 20:26:34 +00:00

10 lines
214 B
TypeScript

import { Category } from '../../categories/entities/category.entity';
export class CreateExpenseDto {
year: string;
month: string;
day: string;
cents: number;
description: string;
category: Category
}