13 lines
308 B
Python
13 lines
308 B
Python
from rest_framework import serializers
|
|
|
|
# shared
|
|
from core.apps.shared.models import TourPlan
|
|
|
|
|
|
|
|
class TourPlanSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = TourPlan
|
|
fields = [
|
|
'id', 'place_name', 'longitude', 'latitude', 'location_send', 'created_at'
|
|
] |