9 lines
285 B
Python
9 lines
285 B
Python
from django.db import models
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class EvaluationCategory(models.TextChoices):
|
|
AUTO = "auto_transport", _("Avtotransport")
|
|
REAL_ESTATE = "real estate", _("ko'chmas mulk")
|
|
EQUIPMENT = "equipment", _("uskuna va jihozlar")
|