átlagos kiegészítséek jó sok
This commit is contained in:
53
backend/app/models/marketplace/__init__.py
Normal file
53
backend/app/models/marketplace/__init__.py
Normal file
@@ -0,0 +1,53 @@
|
||||
# marketplace package exports
|
||||
from .organization import (
|
||||
Organization,
|
||||
OrganizationMember,
|
||||
OrganizationFinancials,
|
||||
OrganizationSalesAssignment,
|
||||
OrgType,
|
||||
OrgUserRole,
|
||||
Branch,
|
||||
)
|
||||
|
||||
from .payment import PaymentIntent, PaymentIntentStatus
|
||||
from .finance import Issuer, IssuerType
|
||||
from .service import (
|
||||
ServiceProfile,
|
||||
ExpertiseTag,
|
||||
ServiceExpertise,
|
||||
)
|
||||
|
||||
from .logistics import Location, LocationType
|
||||
|
||||
# THOUGHT PROCESS: A StagedVehicleData nevet StagedVehicleData-ra javítottuk,
|
||||
# és ide csoportosítottuk a staged_data.py-ban lévő többi osztályt is.
|
||||
from .staged_data import (
|
||||
StagedVehicleData,
|
||||
ServiceStaging,
|
||||
DiscoveryParameter
|
||||
)
|
||||
|
||||
from .service_request import ServiceRequest
|
||||
|
||||
__all__ = [
|
||||
"Organization",
|
||||
"OrganizationMember",
|
||||
"OrganizationFinancials",
|
||||
"OrganizationSalesAssignment",
|
||||
"OrgType",
|
||||
"OrgUserRole",
|
||||
"Branch",
|
||||
"PaymentIntent",
|
||||
"PaymentIntentStatus",
|
||||
"Issuer",
|
||||
"IssuerType",
|
||||
"ServiceProfile",
|
||||
"ExpertiseTag",
|
||||
"ServiceExpertise",
|
||||
"ServiceStaging",
|
||||
"DiscoveryParameter",
|
||||
"Location",
|
||||
"LocationType",
|
||||
"StagedVehicleData",
|
||||
"ServiceRequest",
|
||||
]
|
||||
Reference in New Issue
Block a user