farmaseftika model va api qoshildi

This commit is contained in:
behruz-dev
2025-11-27 15:23:05 +05:00
parent 708f4032ca
commit e8fb4c1e5b
8 changed files with 155 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
from django.db import models
# shared
from core.apps.shared.models import BaseModel
class Factory(BaseModel):
name = models.CharField(max_length=200)
def __str__(self):
return self.name