1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-03-13 00:15:48 +03:00
django-rest-framework/rest_framework/tests/serializers.py

9 lines
227 B
Python

from rest_framework import serializers
from rest_framework.tests.models import NullableForeignKeySource
class NullableFKSourceSerializer(serializers.ModelSerializer):
class Meta:
model = NullableForeignKeySource