from django.urls import path
from api.property_api.property_details.views.property_details_view import (
    PropertyDetailsListCreateAPIView,
    PropertyDetailsDetailAPIView,
    PropertyDetailsPublicListAPIView,
)

urlpatterns = [
    path("property_details/public/", PropertyDetailsPublicListAPIView.as_view(), name="property_details-public-list"), 
    path("property_details/", PropertyDetailsListCreateAPIView.as_view(), name="property_details-list-create"),
    path("property_details/<int:pk>/", PropertyDetailsDetailAPIView.as_view(), name="property_details-detail"),
]
