Statistics
| Revision:

root / hci / trunk / .metadata / .plugins / org.eclipse.core.resources / .history / bb / a0d1910d8712001016bdca23e4db6bb5 @ 3

History | View | Annotate | Download (281 Bytes)

1 3 alexbesir
package com.eneraptor.hci
2
3
class DeviceInfo {
4
5
	String deviceId
6
	String friendlyName
7
	String description
8
	String iconPath
9
10
    static constraints = {
11
		deviceId(blank: false)
12
		friendlyName(blank: false)
13
		description(nullable: true)
14
		iconPath(nullable: true)
15
    }
16
}