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