937e032 by Anon Ray at 2013-07-31 1
# coding utf-8
2
# field.py
3
# Field as in an atomic type/field like text, image, media or custom defined
4
# field/type
5
6
class Field(object):
7
    """Docstring for Field """
8
9
    def __init__(self):
10
        """@todo: to be defined1 """
bb07f56 by Anon Ray at 2013-09-06 11
        self.id = object.id
12
        self.tags = object.tags
13
        self.type = object.type
14
        self.body = object.body
15