transpub/group.py

9 lines
145 B
Python
Raw Normal View History

2013-05-31 18:53:21 +00:00
class Group():
def __init__(self, id, subject, owner):
self.id = id
self.subject = subject
self.owner = owner
self.participants = { }