Files
spend-sparrow/arch.gv
Tim Wundenberg faf28b559a
Some checks failed
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Failing after 12m0s
chore: refine future domain model
2026-01-06 19:15:32 +01:00

20 lines
416 B
Plaintext

digraph {
Budget
RecurringCost
SavingGoal
Tag
Transaction
Account
BankConnection
BankConnection -> Transaction [label="imports into"]
BankConnection -> Account [label="references"]
Transaction -> Account [label="references"]
Transaction -> Tag [label="references"]
Budget -> Tag [label="references"]
RecurringCost -> Tag [label="references"]
SavingGoal -> Tag [label="references"]
}