Files
service-finder/backend/app/models/__init__.py
2026-02-04 21:58:57 +00:00

25 lines
789 B
Python
Executable File

from app.db.base import Base
from .identity import User, Person, Wallet, UserRole # ÚJ központ
from .company import Company, CompanyMember, VehicleAssignment
from .organization import Organization, OrgType
from .vehicle import (
Vehicle,
VehicleOwnership,
VehicleBrand,
EngineSpec,
ServiceProvider,
ServiceRecord,
VehicleCategory,
VehicleModel,
VehicleVariant
)
# Aliasok a kompatibilitás kedvéért
UserVehicle = Vehicle
__all__ = [
"Base", "User", "Person", "Wallet", "UserRole", "Vehicle", "VehicleOwnership",
"VehicleBrand", "EngineSpec", "ServiceProvider", "ServiceRecord", "Company",
"CompanyMember", "VehicleAssignment", "UserVehicle", "VehicleCategory",
"VehicleModel", "VehicleVariant", "Organization", "OrgType"
]