source: trunk/grails-app/domain/Form.groovy @ 118

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

First commit of Asset domain, including domain-classes, controllers, views and bootstrap.

File size: 292 bytes
Line 
1class Form {
2    String name
3    String description = ""
4    boolean isActive = true
5    boolean isUsed = true
6
7    static hasMany = [lifePlans: LifePlan]
8//
9//     static belongsTo = []
10//
11//     static constraints = {
12//
13//     }
14
15    String toString() {
16        "${this.name}"
17    }
18}
19
Note: See TracBrowser for help on using the repository browser.