kopia lustrzana https://github.com/longclawshop/longclaw
12 wiersze
304 B
Python
12 wiersze
304 B
Python
|
|
from rest_framework import serializers
|
||
|
|
|
||
|
|
from longclaw.products.serializers import ProductVariantSerializer
|
||
|
|
from longclaw.checkout.models import ShippingCountry
|
||
|
|
|
||
|
|
class ShippingCountrySerializer(serializers.ModelSerializer):
|
||
|
|
|
||
|
|
class Meta:
|
||
|
|
model = ShippingCountry
|
||
|
|
fields = "__all__"
|
||
|
|
|
||
|
|
|