summaryrefslogtreecommitdiff
path: root/kronos/model.py
blob: d2ac67ced36d00ca8f7ec80a94d653476db8153f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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 = []