source: trunk/src/grails-app/domain/ModificationType.groovy @ 34

Last change on this file since 34 was 34, checked in by gav, 15 years ago

Re-added launch and tmproj with correct name, added more BootStrap? values, change code to use .png files

File size: 240 bytes
Line 
1class ModificationType {
2    String name
3    String description = ""
4    boolean isActive = true
5
6    static hasMany = [modifications : Modification]
7
8    static constraints = {
9    }
10
11    String toString() {
12        "${this.name}"
13    }
14}
Note: See TracBrowser for help on using the repository browser.