Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > c66175b08690d24bca431460aac64d89 > files > 12

python-envisage-doc-4.3.0-3.fc18.noarch.rpm

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


# Enthought library imports.
from 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 ######################################################################