10 lines
207 B
Python
10 lines
207 B
Python
from rest_framework import serializers
|
|
from web.models.category import Category
|
|
|
|
|
|
class CategorySerializer(serializers.ModelSerializer):
|
|
|
|
class Meta:
|
|
model = Category
|
|
fields = '__all__'
|
|
|