mirror of
https://github.com/Dadechin/Dashboard-XRoom.git
synced 2025-07-16 15:14:33 +00:00
8 lines
202 B
Python
8 lines
202 B
Python
from rest_framework import serializers
|
|
from ..models.customer import Customer
|
|
|
|
class CustomerSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Customer
|
|
fields = '__all__'
|