mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 22:39:25 +08:00
9 lines
198 B
Python
9 lines
198 B
Python
|
from rest_framework import serializers
|
||
|
from .models import Year_Level
|
||
|
|
||
|
|
||
|
class YearLevelSerializer(serializers.ModelSerializer):
|
||
|
class Meta:
|
||
|
model = Year_Level
|
||
|
fields = '__all__'
|