source:
trunk/grails-app/domain/LifePlan.groovy
@
450
Last change on this file since 450 was 121, checked in by , 16 years ago | |
---|---|
File size: 245 bytes |
Line | |
---|---|
1 | class LifePlan { |
2 | |
3 | String name |
4 | String description = "" |
5 | boolean isActive = true |
6 | |
7 | // static hasMany = [] |
8 | |
9 | // static belongsTo = [] |
10 | |
11 | // static constraints = { |
12 | // } |
13 | |
14 | String toString() { |
15 | "${this.name}" |
16 | } |
17 | } |
18 |
Note: See TracBrowser
for help on using the repository browser.