source: main/waeup.sirp/trunk/src/waeup/sirp/hostels/interfaces.py @ 6951

Last change on this file since 6951 was 6951, checked in by Henrik Bettermann, 14 years ago

Start implementation of hostels package.

  • Property svn:keywords set to Id
File size: 319 bytes
Line 
1##
2## interfaces.py
3from zope.interface import Attribute, invariant
4from zope import schema
5from waeup.sirp.interfaces import IWAeUPObject
6
7class IHostelsContainer(IWAeUPObject):
8    """A container for all kind of hostel objects.
9
10    """
11
12class IHostel(IWAeUPObject):
13    """A base representation of hostels.
14
15    """
Note: See TracBrowser for help on using the repository browser.