10 lines
191 B
Python
10 lines
191 B
Python
from rest_framework import serializers
|
|
|
|
from .models import Product
|
|
|
|
|
|
class ProductSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Product
|
|
fields = '__all__'
|