Files
rengine/notification/models.py
T
2020-05-22 11:27:10 +05:30

10 lines
259 B
Python

from django.db import models
class NotificationHooks(models.Model):
hook_name = models.CharField(max_length=200)
hook_url = models.CharField(max_length=500)
send_notif = models.BooleanField()
def __str__(self):
return self.hook_name