source: trunk/grails-app/domain/ExtendedAttributeType.groovy @ 267

Last change on this file since 267 was 267, checked in by gav, 14 years ago

Re-arrange svn for asset tree refactor.

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.