10 lines
229 B
Python
10 lines
229 B
Python
from rest_framework import serializers
|
|
|
|
from countries.models import Country
|
|
|
|
|
|
class CountrySerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Country
|
|
fields = ["name", "alpha2", "alpha3", "region"]
|