source: trunk/src/grails-app/domain/TypeOfModification.groovy @ 16

Last change on this file since 16 was 16, checked in by tuxta, 15 years ago

Created grails app and init domain classes

File size: 143 bytes
Line 
1class TypeOfModification {
2    String name
3    String description
4    boolean isActive
5
6    static hasMany = [modifications : Modification]
7
8}
Note: See TracBrowser for help on using the repository browser.