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
RevLine 
[18]1class TypeOfPersonGroup {
2    String name
[19]3    String description = ""
4    boolean isActive = true
[18]5
6    static hasMany = [personGroups : PersonGroup]
[19]7
8    String toString() {
9        "${this.name}"
10    }
[18]11}
Note: See TracBrowser for help on using the repository browser.