mirror of
https://github.com/Dadechin/Dashboard-XRoom.git
synced 2025-07-03 00:34:34 +00:00
10 lines
314 B
Python
10 lines
314 B
Python
# serializers.py
|
|
from rest_framework import serializers
|
|
from core.models.AssetBundleRoom import AssetBundleRoom
|
|
|
|
|
|
|
|
class AssetBundleRoomSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = AssetBundleRoom
|
|
fields = '__all__' # This will include all fields from the AssetBundleRoom model |