17 lines
450 B
Python
17 lines
450 B
Python
from rest_framework import serializers
|
|
from .models import Seller, Product, Category
|
|
|
|
class CategorySerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Category
|
|
fields = '__all__'
|
|
|
|
class SellerSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Seller
|
|
fields = '__all__'
|
|
|
|
class ProductSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Product
|
|
fields = '__all__' |