8 lines
154 B
Python
8 lines
154 B
Python
from django.db import models
|
|
|
|
|
|
class PriorityChoice(models.TextChoices):
|
|
LOW = "low", "Low"
|
|
MEDIUM = "medium", "Medium"
|
|
HIGH = "high", "High"
|