9 lines
264 B
Python
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" |