9 lines
222 B
Python
9 lines
222 B
Python
from rest_framework import serializers
|
|
from apps.notification.models import Notification
|
|
|
|
|
|
class NotificationSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Notification
|
|
fields = '__all__'
|