Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 4a6f76725dc8922dc15f7eb0d84d77ef > files > 215

python-enthought-envisagecore-3.1.1-2mdv2010.0.noarch.rpm

""" The interface for 'Message of the Day' messages. """


# Enthought library imports.
from enthought.traits.api import Interface, Str


class IMessage(Interface):
    """ The interface for 'Message of the Day' messages. """

    # The author of the message.
    author = Str
    
    # The text of the message.
    text = Str

#### EOF ######################################################################