5 lines
100 B
Python
5 lines
100 B
Python
|
|
class Chat(object):
|
|
def __init__(self, ident):
|
|
self.id = ident
|
|
self.tasks = []
|