9 lines
149 B
Python
9 lines
149 B
Python
|
class Notification():
|
||
|
def __init__(self):
|
||
|
|
||
|
self.name="Fanfiction"
|
||
|
|
||
|
def send_notification(self, title, text):
|
||
|
return
|
||
|
|