9 lines
145 B
Python
9 lines
145 B
Python
|
|
||
|
class Group():
|
||
|
|
||
|
def __init__(self, id, subject, owner):
|
||
|
self.id = id
|
||
|
self.subject = subject
|
||
|
self.owner = owner
|
||
|
self.participants = { }
|