1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-07-27 16:40:03 +03:00
django-rest-framework/tests/serializers.py
2014-08-19 13:28:07 +01:00

8 lines
211 B
Python

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