Files
rengine/notification/models.py
T
2020-07-19 00:25:13 +05:30

11 lines
260 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