Files
Personal-Finance-Management/app/models/__init__.py
T
2026-05-31 10:03:28 -04:00

13 lines
548 B
Python

from app.models.user import User
from app.models.account import Account
from app.models.category import Category
from app.models.receipt import Receipt
from app.models.recurring_rule import RecurringRule
from app.models.transaction import Transaction
from app.models.budget import Budget
from app.models.goal import Goal, GoalContribution
from app.models.investment import Investment, InvestmentTransaction
from app.models.net_worth_snapshot import NetWorthSnapshot
from app.models.ai_insight import AiInsight
from app.models.fx_rate import FxRate