source: trunk/src/grails-app/domain/TypeOfPersonGroup.groovy @ 19

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

Set up BootStrap? and tweaked Domain classes

File size: 205 bytes
Line 
1class TypeOfPersonGroup {
2    String name
3    String description = ""
4    boolean isActive = true
5
6    static hasMany = [personGroups : PersonGroup]
7
8    String toString() {
9        "${this.name}"
10    }
11}
Note: See TracBrowser for help on using the repository browser.