mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 13:35:42 +00:00
8 lines
189 B
Python
8 lines
189 B
Python
from rest_framework import serializers
|
|
from .models import TypePay
|
|
|
|
class TypePaySerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = TypePay
|
|
fields = '__all__'
|