#!/usr/bin/env python

from dmObject import DmObject

class Workflow(DmObject):

    DEFAULT_KEY_LIST = [ 'id', 'name', 'owner' ]

    def __init__(self, dict):
        DmObject.__init__(self, dict)