25 lines
789 B
Python
Executable File
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"
|
|
] |