mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
9 lines
193 B
Python
9 lines
193 B
Python
|
from .models import Landmark
|
||
|
from rest_framework import serializers
|
||
|
|
||
|
|
||
|
class LandmarkSerializer(serializers.ModelSerializer):
|
||
|
class Meta:
|
||
|
model = Landmark
|
||
|
fields = '__all__'
|