mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-03-20 23:30:23 +00:00
9 lines
270 B
Python
9 lines
270 B
Python
from django.db import models
|
|
from notifications.base.models import AbstractNotification
|
|
|
|
|
|
class Notification(AbstractNotification):
|
|
details = models.CharField(max_length=64, blank=True, null=True)
|
|
|
|
class Meta(AbstractNotification.Meta):
|
|
abstract = False
|