Ignore:
Timestamp:
9 Feb 2009, 21:32:29 (16 years ago)
Author:
uli
Message:

Move interface for hostels to main interface collection.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • waeup/branches/ulif-rewrite/src/waeup/interfaces.py

    r3929 r3938  
    5252        Returns the key, under which the object was stored.
    5353        """
    54    
     54
     55class IHostel(IWAeUPObject):
     56    """Representation of a hostel.
     57    """
     58    name = schema.TextLine(
     59        title = u'Name of Hostel',
     60        default = u'Nobody',
     61        required = True,
     62        )
     63
     64
     65       
    5566class IWAeUPExporter(Interface):
    5667    """An exporter for objects.
Note: See TracChangeset for help on using the changeset viewer.