mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
Theater and Custom devices to HAL interface. Added Select ALL feature for bulk add screens.
19 lines
387 B
Java
19 lines
387 B
Java
package com.bwssystems.hal;
|
|
|
|
public class StatusDescription {
|
|
private String Status;
|
|
private String Description;
|
|
public String getStatus() {
|
|
return Status;
|
|
}
|
|
public void setStatus(String status) {
|
|
Status = status;
|
|
}
|
|
public String getDescription() {
|
|
return Description;
|
|
}
|
|
public void setDescription(String description) {
|
|
Description = description;
|
|
}
|
|
}
|