Files
xvatayka/core/apps/accounts/choices.py
NORBOYEVSAMARIDDIN 493cb58222 first commit
2026-02-07 11:18:38 +05:00

9 lines
264 B
Python

from django.db import models
class RoleChoice(models.TextChoices):
"""
User Role Choice
"""
SUPERUSER = "superuser", "Superuser"
BUSINESSMAN = "businessman", "Businessman"
MANAGER = "manager", "Manager"
EMPLOYEE = "employee", "Employee"