feat: cumulative balance with carried_over in finance summary
All checks were successful
CI / ci (push) Successful in 14s

This commit is contained in:
Cosmo
2026-03-01 05:22:56 +00:00
parent e782367ef0
commit 9e06341564
2 changed files with 22 additions and 2 deletions

View File

@@ -73,6 +73,7 @@ type UpdateFinanceTransactionRequest struct {
}
type FinanceSummary struct {
CarriedOver float64 `json:"carried_over"`
Balance float64 `json:"balance"`
TotalIncome float64 `json:"total_income"`
TotalExpense float64 `json:"total_expense"`