mirror of
https://github.com/Dadechin/Dashboard-XRoom.git
synced 2025-07-17 07:34: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__'
|