source: trunk/src/grails-app/domain/PersonGroupType.groovy @ 21

Last change on this file since 21 was 21, checked in by gavin, 15 years ago

Remove TypeOfClass? and change to ClassType?. Update ERD to match.
Create and add openMimLogo/Icon.
Generate-all *.
Configure BootStrap? and add entries, some not saving yet.
Update DatabaseDesign?.tex and index.gsp

File size: 203 bytes
Line 
1class PersonGroupType {
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.