# vim: set filencoding=utf8 """ Kronos Model Objects @author: Mike Crute (mcrute@ag.com) @organization: American Greetings Interactive @date: February 04, 2010 """ class Activity(object): def __init__(self, activity, description=None, category=None): self.activity = activity self.description = description self.category = category self.tags = []