source: main/waeup.sirp/trunk/src/waeup/sirp/student/interfaces.py @ 5406

Last change on this file since 5406 was 4789, checked in by uli, 15 years ago

Merge changes from ulif-layout back into trunk (finally).

  • Property svn:eol-style set to native
File size: 282 bytes
Line 
1##
2## interfaces.py
3from zope.interface import Interface
4from zope import schema
5
6class IStudent(Interface):
7    """Representation of a student.
8    """
9    name = schema.TextLine(
10        title = u'Name of student',
11        default = u'Nobody',
12        required = True,
13        )
14
Note: See TracBrowser for help on using the repository browser.