Files
GNX-WEB/backEnd/home/serializers.py
Iliyan Angelov 136f75a859 update
2025-11-24 08:18:18 +02:00

14 lines
400 B
Python

from rest_framework import serializers
from .models import HomeBanner
class HomeBannerSerializer(serializers.ModelSerializer):
class Meta:
model = HomeBanner
fields = [
'id', 'icon', 'badge', 'heading', 'highlight', 'subheading',
'description', 'button_text', 'button_url', 'display_order',
'is_active', 'created_at', 'updated_at'
]