Statistics
| Revision:

root / hci / trunk / eneraptor-web-app / grails-app / domain / com / eneraptor / hci / CombGraph.groovy @ 63

History | View | Annotate | Download (182 Bytes)

1
package com.eneraptor.hci
2

    
3
class CombGraph {
4
        
5
        String name
6
        static hasMany = [graphs:EneGraph]
7

    
8
    static constraints = {
9
                
10
                name(blank:false, unique:true)
11
                
12
    }
13
        
14
}