Files
FirstCore/app/models/__init__.py
T
Azeez Muibi 075f953dbc first commit
2025-04-10 19:32:50 +01:00

7 lines
223 B
Python

from .customer import Customer
from .account import Account
from .loan import Loan
from .transaction import Transaction
from .repayment import Repayment
__all__ = ['Customer', 'Account', 'Loan', 'Transaction', 'Repayment']