| 1234567891011 |
- from rest_framework import serializers, status
- from rest_framework.exceptions import ValidationError
- from apps.indicatortype.models import IndicatorType
- from apps.patient.models import Patient
- class IndicatorTypeSerializer(serializers.ModelSerializer):
- class Meta:
- model = IndicatorType
- fields = '__all__'
|