Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
station.py 220 B
from rest_framework.serializers import ModelSerializer
from ..models.station import Station


class StationSerializer(ModelSerializer):
    class Meta:
        model = Station
        fields = '__all__'
        depth = 1