transpub/group.py
2013-05-31 20:53:21 +02:00

9 lines
145 B
Python

class Group():
def __init__(self, id, subject, owner):
self.id = id
self.subject = subject
self.owner = owner
self.participants = { }