Statistics
| Revision:

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

History | View | Annotate | Download (208 Bytes)

1 3 alexbesir
package com.eneraptor.hci
2
3
class InternalConfig {
4
5
        String configId
6
        String configVal
7
8
    static constraints = {
9
10
                configId(blank: false, unique: true)
11
                configVal(nullable: true)
12
13
    }
14
15
}