kop narsalar qoshildi

This commit is contained in:
behruz-dev
2025-11-22 16:17:06 +05:00
parent 6d8f5e3fec
commit 7723aad146
11 changed files with 212 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
from rest_framework import serializers
# shared
from core.apps.shared.models import District
class DistrictSerializer(serializers.ModelSerializer):
class Meta:
model = District
fields = [
'id', 'name', 'created_at'
]