targo-backend/src/time-and-attendance/expenses/dtos/expense-get.dto.ts
2025-11-03 10:53:15 -05:00

12 lines
288 B
TypeScript

export class GetExpenseDto {
id: number;
timesheet_id: number;
bank_code_id: number;
attachment?: number;
date: string;
comment: string;
mileage?: number;
amount?: number;
supervisor_comment?: string;
is_approved: boolean;
}