mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 08:13:23 +00:00
16 lines
323 B
Java
16 lines
323 B
Java
package com.bwssystems.hal;
|
|
|
|
import java.util.List;
|
|
|
|
public class DeviceElements {
|
|
private List<DeviceName> DeviceElements;
|
|
|
|
public List<DeviceName> getDeviceElements() {
|
|
return DeviceElements;
|
|
}
|
|
|
|
public void setDeviceElements(List<DeviceName> deviceElements) {
|
|
DeviceElements = deviceElements;
|
|
}
|
|
}
|