Files
fonrey/apps/property/models/__init__.py

58 lines
1.2 KiB
Python

from apps.property.models.core import (
Property,
PropertyCertificate,
PropertyCompleteness,
PropertyContact,
PropertyMarketing,
PropertyProtection,
)
from apps.property.models.follow_keys import (
FollowLog,
FollowLogAttachment,
FollowLogRecording,
KeyAttachment,
PropertyKey,
)
from apps.property.models.listings import (
Commission,
CommissionAttachment,
ListingHistory,
NumberHolderApproval,
PriceChange,
)
from apps.property.models.media import (
FieldSurvey,
PropertyAttachment,
PropertyFavorite,
PropertyPhoto,
PropertyTag,
PropertyTagRelation,
SurveyPhoto,
)
__all__ = [
"Commission",
"CommissionAttachment",
"FieldSurvey",
"FollowLog",
"FollowLogAttachment",
"FollowLogRecording",
"KeyAttachment",
"ListingHistory",
"NumberHolderApproval",
"PriceChange",
"Property",
"PropertyAttachment",
"PropertyCertificate",
"PropertyCompleteness",
"PropertyContact",
"PropertyFavorite",
"PropertyKey",
"PropertyMarketing",
"PropertyPhoto",
"PropertyProtection",
"PropertyTag",
"PropertyTagRelation",
"SurveyPhoto",
]