old_console/notifications/enums.py
2024-11-02 14:12:45 +03:00

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'