xray/orthanc/serializers.py
The unwasted guests 8ec69c5d16 back-end 1.0
2025-01-28 21:43:26 +10:00

8 lines
189 B
Python

from rest_framework import serializers
from .models import Patient
class PatientSerializer(serializers.ModelSerializer):
class Meta:
model = Patient
fields = "__all__"