19 lines
374 B
Python
19 lines
374 B
Python
from django.db import models
|
|
|
|
|
|
class NotificationType(models.TextChoices):
|
|
ASSET = 'asset'
|
|
INCIDENT = 'incident'
|
|
DEVICE = 'device'
|
|
SYSTEM = 'system'
|
|
OTHER = 'other'
|
|
|
|
|
|
class NotificationImportance(models.TextChoices):
|
|
HIGH = 'high'
|
|
MEDIUM = 'medium'
|
|
LOW = 'low'
|
|
|
|
|
|
class NotificationGroup(models.TextChoices):
|
|
NOTIFICATION = 'notification'
|