source: trunk/grails-app/domain/AssetExtendedAttributeType.groovy @ 122

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

Run generate-all on all controllers and views except Person and Authority.
Extensive work on Asset domain and application now compiles and runs well.
Update BootStrap? to suite.

File size: 311 bytes
Line 
1class AssetExtendedAttributeType {
2
3    String name
4    String description = ""
5    boolean isActive = true
6
7    static hasMany = [assetExtendedAttributes: AssetExtendedAttribute]
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.