teste-01 / endpoint_teste /serializer.py
Last commit not found
raw
history blame
231 Bytes
from rest_framework import serializers
from endpoint_teste.models import EndpointTesteModel
class EndpointTesteSerializer(serializers.ModelSerializer):
class Meta:
model = EndpointTesteModel
fields = "__all__"