Ignore:
Timestamp:
Nov 25, 2008, 3:58:19 PM (15 years ago)
Author:
tuxta
Message:

Set up BootStrap? and tweaked Domain classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/grails-app/domain/TypeOfPersonGroup.groovy

    r18 r19  
    11class TypeOfPersonGroup {
    22    String name
    3     String Description
    4     boolean isActive
     3    String description = ""
     4    boolean isActive = true
    55
    66    static hasMany = [personGroups : PersonGroup]
     7
     8    String toString() {
     9        "${this.name}"
     10    }
    711}
Note: See TracChangeset for help on using the changeset viewer.